Minería de Datos (Master en Data Science, UIMP-UC)

Tarea 1. Variables Categóricas: Reglas de Asociación y Árboles de Clasificación

[Profesores: Joaquín Bedia, Rodrigo García y Sixto Herrera]

En la presente tarea consideraremos el dataset Mushroom, incluido tanto en la La librería arulesViz como en las diferentes plataformas descritas en el marco de la asignatura y en el GitHub dedicado a este Máster (Mushroom), para aplicar las diferentes técnicas vistas en el curso para variables categóricas: Reglas de Asociación y Árboles de Clasificación.

Para el desarrollo de la tarea se permitirá el uso de todo el material incluido en el Moodle de las asignatura así como el desarrollado por el alumno durante la realización de las prácticas.

La entrega consisitirá de un notebook de Jupyter ó un R-MarkDown, junto con el archivo html que éste genera. Ambos ficheros se entregarán a través del Moodle de la asignatura en la tarea correspondiente.

Punto 1 (3 puntos):

Considerar uno de los algoritmos de asociación vistos en clase y obtener las reglas representativas del dataset fijando los parámetros de aprendizaje (soporte, confianza, etc...). Analizar los resultados en términos generales:

  • ¿Cuantas reglas se han generado?
  • ¿Existe alguna regla redundante?, ¿Cuántas?
  • ¿Existe alguna regla que incluya la variable objetivo: Class=edible ó Class=poisonous?, ¿Cuantas?
  • De cara a ser utilizada como modelo predictivo es adecuado que la variable objetivo se encuentre en el consecuente de la regla de asociación, ¿se da esta propiedad en alguna regla?
  • Considerar los subconjuntos de reglas con ambas clases como consecuente e ilustrar las variables implicadas en cada caso. Considerar alguno de los grafos vistos para apoyar las conclusiones obtenidas.

NOTA: Usar soportes superiores a 0.1 para evitar problemas de memoria.

Punto 2 (4 puntos):

En este apartado aplicaremos árboles de clasificación para obtener un modelo que permita clasificar una nueva entrada. Para ello, vamos a utilizar el paquete CaReT. Este paquete (y los demás que hemos visto para trabajar con árboles en R) no aceptan objetos del tipo transactions como los del apartado anterior. Por tanto, hemos preparado un fichero csv con el dataset Mushrooms; puedes descargarlo desde esta aquí: https://github.com/SantanderMetGroup/Master-Data-Science/tree/master/Data_mining/datasets. Puedes leer este dataset con la función read.csv.
Ahora ya tenemos un data.frame con el que podemos empezar a trabajar. En primer lugar tendremos que eliminar la columna 17 (veil.type), ya que contiene un único nivel y daría errores en CaReT(esta columna podría eliminarse también en el caso de las reglas de asociación ya que no aporta información al dataset).
Nuestro objetivo será encontrar la configuración (profundidad) óptima del árbol. Para ello, dividiremos el dataset en dos subconjuntos indpendedientes de train y test (75% y 25% del total, respectivamente). Sobre el dataset de train, aplicaremos una cross-validación con 3 folds y la repetiremos 50 veces (recuerda que los árboles son sensibles a la partición train/test que se considere).

  • ¿Cuál es la configuración óptima del árbol? ¿Hay alguna diferencia entre el árbol completo y el óptimo? ¿Por qué crees que ocurre esto?
  • ¿Cuáles son las dos variables que mayor peso tienen a la hora de clasificar? Entrena un nuevo árbol considerando como predictores únicamente esas dos variables. ¿Qué resultados obtienes?
  • Entrena un nuevo árbol considerando como predictores cualesquiera otras dos variables que no sean las utilizadas en la pregunta anterior. ¿Cuál es el error de test de este árbol?

Punto 3 (3 puntos):

Por un lado, las ramas del árbol pueden ser interpretadas como reglas de forma similar a las obtenidas por el algoritmo de reglas aplicado. Por ejemplo, en el caso del árbol obtenido con el dataset Play Tennis puede obtenerse las siguientes reglas: SI Outlook = Overcast -> Play Tennis = Yes ó SI (Outlook = Sunny) AND (Humidity = Normal) -> Play Tennis = Yes, cuya confianza asociada viene dada por la frecuencia relativa de cada caso en esa rama del árbol. Por otro lado, considerando las reglas que implican a nuestra variable objetivo tendríamos un modelo similar al dado por el árbol. Considerar y comparar ambas aproximaciones (p.e. ¿coinciden los antecedentes de las reglas? ¿alguna de las variables más frecuentes como antecedente en las reglas se corresponde con alguna de las variables con mayor capacidad de discriminación? etc.).

In [420]:
library(grid)
library(arules)
library(arulesViz)
library(grid)
library(arules)
library(arulesViz)
library(caret)
library(lattice)
library(ggplot2)
library(tree)
library(rpart)
library(caret)
library(ISLR)
library(class)
library(rpart.plot)
In [421]:
dataset = read.csv("mushrooms.csv")
#dataset["veil.type"]

PABLO CALATAYUD PELAYO

PUNTO 1. Reglas de Asociacion

1.0 Considerar uno de los algoritmos de asociación vistos en clase y obtener las reglas representativas del dataset fijando los parámetros de aprendizaje (soporte, confianza, etc...). Analizar los resultados en términos generales:

In [30]:
#Voy a escoger el algoritmo apriori, para un soporte de 0.1 y una confianza de 0.5.
#He seleccionado maxima longitud 3 para el itemset porque si no los calculos me iban muy lento.
rules <- apriori(dataset, 
                 parameter=list(support = 0.1, confidence = 0.5,maxlen=3,target="rules"))
#cat("end")

inspect(rules)
Apriori

Parameter specification:
 confidence minval smax arem  aval originalSupport maxtime support minlen
        0.5    0.1    1 none FALSE            TRUE       5     0.1      1
 maxlen target  ext
      3  rules TRUE

Algorithmic control:
 filter tree heap memopt load sort verbose
    0.1 TRUE TRUE  FALSE TRUE    2    TRUE

Absolute minimum support count: 812 

set item appearances ...[0 item(s)] done [0.00s].
set transactions ...[118 item(s), 8124 transaction(s)] done [0.02s].
sorting and recoding items ... [55 item(s)] done [0.00s].
creating transaction tree ... done [0.01s].
checking subsets of size 1 2 3
Warning message in apriori(dataset, parameter = list(support = 0.1, confidence = 0.5, :
“Mining stopped (maxlen reached). Only patterns up to a length of 3 returned!”
 done [0.08s].
writing ... [8791 rule(s)] done [0.00s].
creating S4 object  ... done [0.01s].
       lhs                             rhs                            support confidence  coverage      lift count
[1]    {}                           => {class=e}                    0.5179714  0.5179714 1.0000000 1.0000000  4208
[2]    {}                           => {stalk.color.below.ring=w}   0.5396356  0.5396356 1.0000000 1.0000000  4384
[3]    {}                           => {stalk.color.above.ring=w}   0.5494830  0.5494830 1.0000000 1.0000000  4464
[4]    {}                           => {stalk.shape=t}              0.5672083  0.5672083 1.0000000 1.0000000  4608
[5]    {}                           => {bruises=f}                  0.5844412  0.5844412 1.0000000 1.0000000  4748
[6]    {}                           => {stalk.surface.below.ring=s} 0.6075825  0.6075825 1.0000000 1.0000000  4936
[7]    {}                           => {stalk.surface.above.ring=s} 0.6371246  0.6371246 1.0000000 1.0000000  5176
[8]    {}                           => {gill.size=b}                0.6907927  0.6907927 1.0000000 1.0000000  5612
[9]    {}                           => {gill.spacing=c}             0.8385032  0.8385032 1.0000000 1.0000000  6812
[10]   {}                           => {ring.number=o}              0.9217134  0.9217134 1.0000000 1.0000000  7488
[11]   {}                           => {gill.attachment=f}          0.9741507  0.9741507 1.0000000 1.0000000  7914
[12]   {}                           => {veil.color=w}               0.9753816  0.9753816 1.0000000 1.0000000  7924
[13]   {habitat=l}                  => {bruises=f}                  0.1014279  0.9903846 0.1024126 1.6945840   824
[14]   {habitat=l}                  => {ring.number=o}              0.1024126  1.0000000 0.1024126 1.0849359   832
[15]   {cap.color=w}                => {stalk.color.below.ring=w}   0.1280158  1.0000000 0.1280158 1.8531022  1040
[16]   {cap.color=w}                => {stalk.color.above.ring=w}   0.1280158  1.0000000 0.1280158 1.8198925  1040
[17]   {cap.color=w}                => {ring.number=o}              0.1073363  0.8384615 0.1280158 0.9096770   872
[18]   {cap.color=w}                => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[19]   {cap.color=w}                => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[20]   {gill.color=n}               => {ring.type=p}                0.1053668  0.8167939 0.1290005 1.6722867   856
[21]   {gill.color=n}               => {class=e}                    0.1152142  0.8931298 0.1290005 1.7242838   936
[22]   {gill.color=n}               => {stalk.surface.below.ring=s} 0.1093058  0.8473282 0.1290005 1.3945897   888
[23]   {gill.color=n}               => {stalk.surface.above.ring=s} 0.1171837  0.9083969 0.1290005 1.4257760   952
[24]   {gill.color=n}               => {gill.size=b}                0.1083210  0.8396947 0.1290005 1.2155523   880
[25]   {gill.color=n}               => {ring.number=o}              0.1290005  1.0000000 0.1290005 1.0849359  1048
[26]   {gill.color=n}               => {gill.attachment=f}          0.1211226  0.9389313 0.1290005 0.9638461   984
[27]   {gill.color=n}               => {veil.color=w}               0.1211226  0.9389313 0.1290005 0.9626297   984
[28]   {cap.color=y}                => {stalk.shape=e}              0.1260463  0.9552239 0.1319547 2.2071214  1024
[29]   {cap.color=y}                => {gill.size=b}                0.1230921  0.9328358 0.1319547 1.3503846  1000
[30]   {cap.color=y}                => {gill.spacing=c}             0.1250615  0.9477612 0.1319547 1.1303012  1016
[31]   {cap.color=y}                => {ring.number=o}              0.1319547  1.0000000 0.1319547 1.0849359  1072
[32]   {cap.color=y}                => {gill.attachment=f}          0.1319547  1.0000000 0.1319547 1.0265353  1072
[33]   {cap.color=y}                => {veil.color=w}               0.1309700  0.9925373 0.1319547 1.0175887  1064
[34]   {stalk.root=e}               => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[35]   {stalk.root=e}               => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[36]   {stalk.root=e}               => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[37]   {stalk.root=e}               => {stalk.color.below.ring=w}   0.1378631  1.0000000 0.1378631 1.8531022  1120
[38]   {stalk.root=e}               => {stalk.color.above.ring=w}   0.1378631  1.0000000 0.1378631 1.8198925  1120
[39]   {stalk.root=e}               => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[40]   {stalk.root=e}               => {ring.number=o}              0.1378631  1.0000000 0.1378631 1.0849359  1120
[41]   {stalk.root=e}               => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[42]   {stalk.root=e}               => {veil.color=w}               0.1378631  1.0000000 0.1378631 1.0252398  1120
[43]   {habitat=p}                  => {class=p}                    0.1240768  0.8811189 0.1408173 1.8279392  1008
[44]   {habitat=p}                  => {bruises=f}                  0.1250615  0.8881119 0.1408173 1.5195916  1016
[45]   {habitat=p}                  => {gill.spacing=c}             0.1408173  1.0000000 0.1408173 1.1926013  1144
[46]   {habitat=p}                  => {ring.number=o}              0.1358936  0.9650350 0.1408173 1.0470011  1104
[47]   {habitat=p}                  => {gill.attachment=f}          0.1408173  1.0000000 0.1408173 1.0265353  1144
[48]   {habitat=p}                  => {veil.color=w}               0.1408173  1.0000000 0.1408173 1.0252398  1144
[49]   {gill.color=w}               => {bruises=t}                  0.1201379  0.8119800 0.1479567 1.9539472   976
[50]   {gill.color=w}               => {ring.type=p}                0.1221073  0.8252912 0.1479567 1.6896839   992
[51]   {gill.color=w}               => {class=e}                    0.1176760  0.7953411 0.1479567 1.5354922   956
[52]   {gill.color=w}               => {stalk.color.above.ring=w}   0.1019202  0.6888519 0.1479567 1.2536364   828
[53]   {gill.color=w}               => {stalk.surface.below.ring=s} 0.1152142  0.7787022 0.1479567 1.2816403   936
[54]   {gill.color=w}               => {stalk.surface.above.ring=s} 0.1245692  0.8419301 0.1479567 1.3214529  1012
[55]   {gill.color=w}               => {gill.size=b}                0.1233383  0.8336106 0.1479567 1.2067450  1002
[56]   {gill.color=w}               => {gill.spacing=c}             0.1248154  0.8435940 0.1479567 1.0060713  1014
[57]   {gill.color=w}               => {ring.number=o}              0.1132447  0.7653910 0.1479567 0.8304002   920
[58]   {gill.color=w}               => {gill.attachment=f}          0.1468488  0.9925125 0.1479567 1.0188490  1193
[59]   {gill.color=w}               => {veil.color=w}               0.1474643  0.9966722 0.1479567 1.0218280  1198
[60]   {population=s}               => {habitat=g}                  0.1033973  0.6730769 0.1536189 2.5456596   840
[61]   {population=s}               => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[62]   {population=s}               => {class=e}                    0.1083210  0.7051282 0.1536189 1.3613264   880
[63]   {population=s}               => {stalk.color.below.ring=w}   0.1536189  1.0000000 0.1536189 1.8531022  1248
[64]   {population=s}               => {stalk.color.above.ring=w}   0.1536189  1.0000000 0.1536189 1.8198925  1248
[65]   {population=s}               => {stalk.surface.below.ring=s} 0.1004431  0.6538462 0.1536189 1.0761439   816
[66]   {population=s}               => {stalk.surface.above.ring=s} 0.1122600  0.7307692 0.1536189 1.1469801   912
[67]   {population=s}               => {gill.size=b}                0.1260463  0.8205128 0.1536189 1.1877844  1024
[68]   {population=s}               => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[69]   {population=s}               => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[70]   {population=s}               => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[71]   {ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[72]   {spore.print.color=h}        => {ring.type=l}                0.1595273  0.7941176 0.2008863 4.9779412  1296
[73]   {ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[74]   {odor=f}                     => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[75]   {ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[76]   {stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.5625000 0.2836041 3.5260417  1296
[77]   {ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[78]   {stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.5463744 0.2919744 3.4249578  1296
[79]   {ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[80]   {ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[81]   {ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[82]   {ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[83]   {ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[84]   {ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[85]   {ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[86]   {ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[87]   {ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[88]   {gill.spacing=w}             => {habitat=g}                  0.1299852  0.8048780 0.1614968 3.0441477  1056
[89]   {gill.spacing=w}             => {ring.type=e}                0.1014279  0.6280488 0.1614968 1.8379929   824
[90]   {gill.spacing=w}             => {odor=n}                     0.1378631  0.8536585 0.1614968 1.9657375  1120
[91]   {gill.spacing=w}             => {class=e}                    0.1477105  0.9146341 0.1614968 1.7658003  1200
[92]   {gill.spacing=w}             => {stalk.color.below.ring=w}   0.1546036  0.9573171 0.1614968 1.7740064  1256
[93]   {gill.spacing=w}             => {stalk.color.above.ring=w}   0.1605121  0.9939024 0.1614968 1.8087956  1304
[94]   {gill.spacing=w}             => {stalk.shape=t}              0.1063516  0.6585366 0.1614968 1.1610137   864
[95]   {gill.spacing=w}             => {bruises=f}                  0.1486952  0.9207317 0.1614968 1.5754053  1208
[96]   {gill.spacing=w}             => {gill.size=b}                0.1299852  0.8048780 0.1614968 1.1651513  1056
[97]   {gill.spacing=w}             => {ring.number=o}              0.1260463  0.7804878 0.1614968 0.8467792  1024
[98]   {gill.spacing=w}             => {gill.attachment=f}          0.1614968  1.0000000 0.1614968 1.0265353  1312
[99]   {gill.spacing=w}             => {veil.color=w}               0.1605121  0.9939024 0.1614968 1.0189883  1304
[100]  {gill.color=p}               => {stalk.root=b}               0.1280158  0.6970509 0.1836534 1.4996933  1040
[101]  {gill.color=p}               => {ring.type=p}                0.1053668  0.5737265 0.1836534 1.1746357   856
[102]  {gill.color=p}               => {class=e}                    0.1048744  0.5710456 0.1836534 1.1024654   852
[103]  {gill.color=p}               => {stalk.surface.above.ring=s} 0.1068439  0.5817694 0.1836534 0.9131173   868
[104]  {gill.color=p}               => {gill.size=b}                0.1614968  0.8793566 0.1836534 1.2729673  1312
[105]  {gill.color=p}               => {gill.spacing=c}             0.1413097  0.7694370 0.1836534 0.9176316  1148
[106]  {gill.color=p}               => {ring.number=o}              0.1718365  0.9356568 0.1836534 1.0151277  1396
[107]  {gill.color=p}               => {gill.attachment=f}          0.1836534  1.0000000 0.1836534 1.0265353  1492
[108]  {gill.color=p}               => {veil.color=w}               0.1836534  1.0000000 0.1836534 1.0252398  1492
[109]  {cap.color=e}                => {gill.color=b}               0.1063516  0.5760000 0.1846381 2.7080000   864
[110]  {gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[111]  {cap.color=e}                => {spore.print.color=w}        0.1137371  0.6160000 0.1846381 2.0956382   924
[112]  {cap.color=e}                => {stalk.root=?}               0.1122600  0.6080000 0.1846381 1.9916903   912
[113]  {cap.color=e}                => {gill.size=n}                0.1063516  0.5760000 0.1846381 1.8628280   864
[114]  {cap.color=e}                => {ring.type=e}                0.1122600  0.6080000 0.1846381 1.7793199   912
[115]  {cap.color=e}                => {habitat=d}                  0.1078287  0.5840000 0.1846381 1.5071207   876
[116]  {cap.color=e}                => {class=p}                    0.1078287  0.5840000 0.1846381 1.2115465   876
[117]  {cap.color=e}                => {population=v}               0.1418021  0.7680000 0.1846381 1.5443644  1152
[118]  {cap.color=e}                => {stalk.shape=t}              0.1772526  0.9600000 0.1846381 1.6925000  1440
[119]  {cap.color=e}                => {bruises=f}                  0.1078287  0.5840000 0.1846381 0.9992452   876
[120]  {cap.color=e}                => {stalk.surface.below.ring=s} 0.1299852  0.7040000 0.1846381 1.1586904  1056
[121]  {cap.color=e}                => {stalk.surface.above.ring=s} 0.1299852  0.7040000 0.1846381 1.1049645  1056
[122]  {cap.color=e}                => {gill.spacing=c}             0.1846381  1.0000000 0.1846381 1.1926013  1500
[123]  {cap.color=e}                => {ring.number=o}              0.1772526  0.9600000 0.1846381 1.0415385  1440
[124]  {cap.color=e}                => {gill.attachment=f}          0.1838996  0.9960000 0.1846381 1.0224291  1494
[125]  {cap.color=e}                => {veil.color=w}               0.1846381  1.0000000 0.1846381 1.0252398  1500
[126]  {spore.print.color=h}        => {odor=f}                     0.1949778  0.9705882 0.2008863 3.6504902  1584
[127]  {odor=f}                     => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[128]  {spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.7941176 0.2008863 2.8000919  1296
[129]  {stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.5625000 0.2836041 2.8000919  1296
[130]  {spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.7941176 0.2008863 2.7198195  1296
[131]  {stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.5463744 0.2919744 2.7198195  1296
[132]  {spore.print.color=h}        => {cap.shape=f}                0.1004431  0.5000000 0.2008863 1.2887056   816
[133]  {spore.print.color=h}        => {stalk.shape=e}              0.1654357  0.8235294 0.2008863 1.9028308  1344
[134]  {spore.print.color=h}        => {cap.shape=x}                0.1004431  0.5000000 0.2008863 1.1110503   816
[135]  {spore.print.color=h}        => {stalk.root=b}               0.1949778  0.9705882 0.2008863 2.0882041  1584
[136]  {spore.print.color=h}        => {class=p}                    0.1949778  0.9705882 0.2008863 2.0135492  1584
[137]  {spore.print.color=h}        => {population=v}               0.1004431  0.5000000 0.2008863 1.0054455   816
[138]  {spore.print.color=h}        => {bruises=f}                  0.1654357  0.8235294 0.2008863 1.4090887  1344
[139]  {spore.print.color=h}        => {gill.size=b}                0.1949778  0.9705882 0.2008863 1.4050354  1584
[140]  {spore.print.color=h}        => {gill.spacing=c}             0.2008863  1.0000000 0.2008863 1.1926013  1632
[141]  {spore.print.color=h}        => {ring.number=o}              0.2008863  1.0000000 0.2008863 1.0849359  1632
[142]  {spore.print.color=h}        => {gill.attachment=f}          0.2008863  1.0000000 0.2008863 1.0265353  1632
[143]  {spore.print.color=h}        => {veil.color=w}               0.2008863  1.0000000 0.2008863 1.0252398  1632
[144]  {population=y}               => {habitat=d}                  0.1368784  0.6495327 0.2107336 1.6762401  1112
[145]  {population=y}               => {cap.surface=y}              0.1097981  0.5210280 0.2107336 1.3048187   892
[146]  {population=y}               => {bruises=t}                  0.1201379  0.5700935 0.2107336 1.3718718   976
[147]  {population=y}               => {odor=n}                     0.1191531  0.5654206 0.2107336 1.3020058   968
[148]  {population=y}               => {stalk.root=b}               0.1900542  0.9018692 0.2107336 1.9403562  1544
[149]  {population=y}               => {ring.type=p}                0.1280158  0.6074766 0.2107336 1.2437349  1040
[150]  {population=y}               => {class=e}                    0.1309700  0.6214953 0.2107336 1.1998641  1064
[151]  {population=y}               => {stalk.shape=t}              0.1063516  0.5046729 0.2107336 0.8897488   864
[152]  {population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.5420561 0.2107336 0.8921523   928
[153]  {population=y}               => {stalk.surface.above.ring=s} 0.1290005  0.6121495 0.2107336 0.9608004  1048
[154]  {population=y}               => {gill.size=b}                0.2018710  0.9579439 0.2107336 1.3867314  1640
[155]  {population=y}               => {gill.spacing=c}             0.2107336  1.0000000 0.2107336 1.1926013  1712
[156]  {population=y}               => {ring.number=o}              0.2067947  0.9813084 0.2107336 1.0646567  1680
[157]  {population=y}               => {gill.attachment=f}          0.2107336  1.0000000 0.2107336 1.0265353  1712
[158]  {population=y}               => {veil.color=w}               0.2107336  1.0000000 0.2107336 1.0252398  1712
[159]  {gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[160]  {gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[161]  {gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[162]  {gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[163]  {gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[164]  {gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[165]  {spore.print.color=w}        => {gill.color=b}               0.2127031  0.7236181 0.2939439 3.4020101  1728
[166]  {gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[167]  {stalk.root=?}               => {gill.color=b}               0.2127031  0.6967742 0.3052683 3.2758065  1728
[168]  {gill.color=b}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[169]  {gill.size=n}                => {gill.color=b}               0.2127031  0.6878981 0.3092073 3.2340764  1728
[170]  {gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[171]  {gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[172]  {ring.type=e}                => {gill.color=b}               0.2127031  0.6224784 0.3417036 2.9265130  1728
[173]  {gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[174]  {gill.color=b}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[175]  {gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[176]  {gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[177]  {gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[178]  {gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[179]  {gill.color=b}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[180]  {gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[181]  {gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[182]  {gill.color=b}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[183]  {gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[184]  {gill.color=b}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[185]  {gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[186]  {cap.color=g}                => {odor=n}                     0.1270310  0.5608696 0.2264894 1.2915262  1032
[187]  {cap.color=g}                => {cap.shape=x}                0.1132447  0.5000000 0.2264894 1.1110503   920
[188]  {cap.color=g}                => {stalk.root=b}               0.1713442  0.7565217 0.2264894 1.6276437  1392
[189]  {cap.color=g}                => {ring.type=p}                0.1152142  0.5086957 0.2264894 1.0414928   936
[190]  {cap.color=g}                => {class=e}                    0.1270310  0.5608696 0.2264894 1.0828195  1032
[191]  {cap.color=g}                => {stalk.shape=t}              0.1142294  0.5043478 0.2264894 0.8891757   928
[192]  {cap.color=g}                => {bruises=f}                  0.1427868  0.6304348 0.2264894 1.0786968  1160
[193]  {cap.color=g}                => {stalk.surface.below.ring=s} 0.1161989  0.5130435 0.2264894 0.8444014   944
[194]  {cap.color=g}                => {stalk.surface.above.ring=s} 0.1161989  0.5130435 0.2264894 0.8052483   944
[195]  {cap.color=g}                => {gill.size=b}                0.2127031  0.9391304 0.2264894 1.3594967  1728
[196]  {cap.color=g}                => {gill.spacing=c}             0.1733136  0.7652174 0.2264894 0.9125992  1408
[197]  {cap.color=g}                => {ring.number=o}              0.2077794  0.9173913 0.2264894 0.9953108  1688
[198]  {cap.color=g}                => {gill.attachment=f}          0.2264894  1.0000000 0.2264894 1.0265353  1840
[199]  {cap.color=g}                => {veil.color=w}               0.2264894  1.0000000 0.2264894 1.0252398  1840
[200]  {stalk.color.below.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[201]  {stalk.color.below.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[202]  {stalk.color.below.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[203]  {stalk.color.below.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[204]  {stalk.color.below.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[205]  {stalk.color.below.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[206]  {stalk.color.below.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[207]  {stalk.color.below.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[208]  {stalk.color.below.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[209]  {stalk.color.below.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[210]  {stalk.color.below.ring=p}   => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[211]  {stalk.color.below.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[212]  {stalk.color.below.ring=p}   => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[213]  {stalk.color.below.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[214]  {stalk.color.above.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[215]  {stalk.color.above.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[216]  {stalk.color.above.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[217]  {stalk.color.above.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[218]  {stalk.color.above.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[219]  {stalk.color.above.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[220]  {stalk.color.above.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[221]  {stalk.color.above.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[222]  {stalk.color.above.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[223]  {stalk.color.above.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[224]  {stalk.color.above.ring=p}   => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[225]  {stalk.color.above.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[226]  {stalk.color.above.ring=p}   => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[227]  {stalk.color.above.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[228]  {spore.print.color=k}        => {habitat=d}                  0.1181684  0.5128205 0.2304284 1.3234288   960
[229]  {spore.print.color=k}        => {bruises=t}                  0.1654357  0.7179487 0.2304284 1.7276704  1344
[230]  {spore.print.color=k}        => {odor=n}                     0.1595273  0.6923077 0.2304284 1.5941915  1296
[231]  {spore.print.color=k}        => {cap.shape=x}                0.1201379  0.5213675 0.2304284 1.1585311   976
[232]  {spore.print.color=k}        => {stalk.root=b}               0.1181684  0.5128205 0.2304284 1.1033246   960
[233]  {spore.print.color=k}        => {ring.type=p}                0.1831610  0.7948718 0.2304284 1.6274038  1488
[234]  {spore.print.color=k}        => {class=e}                    0.2028557  0.8803419 0.2304284 1.6995954  1648
[235]  {spore.print.color=k}        => {stalk.color.below.ring=w}   0.1595273  0.6923077 0.2304284 1.2829169  1296
[236]  {spore.print.color=k}        => {stalk.color.above.ring=w}   0.1595273  0.6923077 0.2304284 1.2599256  1296
[237]  {spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.6666667 0.2304284 1.1753472  1248
[238]  {spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1949778  0.8461538 0.2304284 1.3926568  1584
[239]  {spore.print.color=k}        => {stalk.surface.above.ring=s} 0.2067947  0.8974359 0.2304284 1.4085721  1680
[240]  {spore.print.color=k}        => {gill.size=b}                0.1969473  0.8547009 0.2304284 1.2372754  1600
[241]  {spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.7692308 0.2304284 0.9173856  1440
[242]  {spore.print.color=k}        => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[243]  {spore.print.color=k}        => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[244]  {spore.print.color=k}        => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[245]  {spore.print.color=n}        => {habitat=d}                  0.1240768  0.5121951 0.2422452 1.3218149  1008
[246]  {spore.print.color=n}        => {bruises=t}                  0.1713442  0.7073171 0.2422452 1.7020865  1392
[247]  {spore.print.color=n}        => {odor=n}                     0.1654357  0.6829268 0.2422452 1.5725900  1344
[248]  {spore.print.color=n}        => {cap.shape=x}                0.1245692  0.5142276 0.2422452 1.1426656  1012
[249]  {spore.print.color=n}        => {stalk.root=b}               0.1240768  0.5121951 0.2422452 1.1019791  1008
[250]  {spore.print.color=n}        => {ring.type=p}                0.1949778  0.8048780 0.2422452 1.6478904  1584
[251]  {spore.print.color=n}        => {class=e}                    0.2146726  0.8861789 0.2422452 1.7108643  1744
[252]  {spore.print.color=n}        => {stalk.color.below.ring=w}   0.1654357  0.6829268 0.2422452 1.2655332  1344
[253]  {spore.print.color=n}        => {stalk.color.above.ring=w}   0.1654357  0.6829268 0.2422452 1.2428534  1344
[254]  {spore.print.color=n}        => {stalk.shape=t}              0.1595273  0.6585366 0.2422452 1.1610137  1296
[255]  {spore.print.color=n}        => {stalk.surface.below.ring=s} 0.2067947  0.8536585 0.2422452 1.4050085  1680
[256]  {spore.print.color=n}        => {stalk.surface.above.ring=s} 0.2186115  0.9024390 0.2422452 1.4164248  1776
[257]  {spore.print.color=n}        => {gill.size=b}                0.2028557  0.8373984 0.2422452 1.2122282  1648
[258]  {spore.print.color=n}        => {gill.spacing=c}             0.1831610  0.7560976 0.2422452 0.9017229  1488
[259]  {spore.print.color=n}        => {ring.number=o}              0.2422452  1.0000000 0.2422452 1.0849359  1968
[260]  {spore.print.color=n}        => {gill.attachment=f}          0.2363368  0.9756098 0.2422452 1.0014978  1920
[261]  {spore.print.color=n}        => {veil.color=w}               0.2363368  0.9756098 0.2422452 1.0002339  1920
[262]  {habitat=g}                  => {stalk.shape=e}              0.1521418  0.5754190 0.2644018 1.3295517  1236
[263]  {habitat=g}                  => {odor=n}                     0.1344165  0.5083799 0.2644018 1.1706571  1092
[264]  {habitat=g}                  => {class=e}                    0.1733136  0.6554935 0.2644018 1.2655012  1408
[265]  {habitat=g}                  => {stalk.color.below.ring=w}   0.2112260  0.7988827 0.2644018 1.4804112  1716
[266]  {habitat=g}                  => {stalk.color.above.ring=w}   0.2112260  0.7988827 0.2644018 1.4538806  1716
[267]  {habitat=g}                  => {bruises=f}                  0.1831610  0.6927374 0.2644018 1.1852988  1488
[268]  {habitat=g}                  => {stalk.surface.above.ring=s} 0.1373708  0.5195531 0.2644018 0.8154654  1116
[269]  {habitat=g}                  => {gill.size=b}                0.2486460  0.9404097 0.2644018 1.3613486  2020
[270]  {habitat=g}                  => {gill.spacing=c}             0.1344165  0.5083799 0.2644018 0.6062945  1092
[271]  {habitat=g}                  => {ring.number=o}              0.2245199  0.8491620 0.2644018 0.9212863  1824
[272]  {habitat=g}                  => {gill.attachment=f}          0.2644018  1.0000000 0.2644018 1.0265353  2148
[273]  {habitat=g}                  => {veil.color=w}               0.2644018  1.0000000 0.2644018 1.0252398  2148
[274]  {odor=f}                     => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[275]  {stalk.surface.below.ring=k} => {odor=f}                     0.1949778  0.6875000 0.2836041 2.5857639  1584
[276]  {odor=f}                     => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[277]  {stalk.surface.above.ring=k} => {odor=f}                     0.1949778  0.6677909 0.2919744 2.5116358  1584
[278]  {odor=f}                     => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[279]  {odor=f}                     => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[280]  {odor=f}                     => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[281]  {class=p}                    => {odor=f}                     0.2658789  0.5515832 0.4820286 2.0745659  2160
[282]  {odor=f}                     => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[283]  {odor=f}                     => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[284]  {odor=f}                     => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[285]  {odor=f}                     => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[286]  {odor=f}                     => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[287]  {odor=f}                     => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[288]  {odor=f}                     => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[289]  {cap.color=n}                => {ring.type=e}                0.1486952  0.5288967 0.2811423 1.5478230  1208
[290]  {cap.color=n}                => {odor=n}                     0.1457410  0.5183888 0.2811423 1.1937048  1184
[291]  {cap.color=n}                => {population=v}               0.1698671  0.6042032 0.2811423 1.2149867  1380
[292]  {cap.color=n}                => {class=e}                    0.1555884  0.5534151 0.2811423 1.0684277  1264
[293]  {cap.color=n}                => {stalk.color.below.ring=w}   0.1457410  0.5183888 0.2811423 0.9606274  1184
[294]  {cap.color=n}                => {stalk.color.above.ring=w}   0.1506647  0.5359019 0.2811423 0.9752839  1224
[295]  {cap.color=n}                => {stalk.shape=t}              0.2087642  0.7425569 0.2811423 1.3091433  1696
[296]  {cap.color=n}                => {bruises=f}                  0.1757755  0.6252189 0.2811423 1.0697722  1428
[297]  {cap.color=n}                => {stalk.surface.below.ring=s} 0.1935007  0.6882662 0.2811423 1.1327947  1572
[298]  {cap.color=n}                => {stalk.surface.above.ring=s} 0.2053176  0.7302977 0.2811423 1.1462401  1668
[299]  {cap.color=n}                => {gill.size=b}                0.1482029  0.5271454 0.2811423 0.7631021  1204
[300]  {cap.color=n}                => {gill.spacing=c}             0.2466765  0.8774081 0.2811423 1.0463980  2004
[301]  {cap.color=n}                => {ring.number=o}              0.2708026  0.9632224 0.2811423 1.0450346  2200
[302]  {cap.color=n}                => {gill.attachment=f}          0.2567701  0.9133100 0.2811423 0.9375449  2086
[303]  {cap.color=n}                => {veil.color=w}               0.2575086  0.9159370 0.2811423 0.9390550  2092
[304]  {stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.2215657  0.7812500 0.2836041 2.6757483  1800
[305]  {stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.2215657  0.7588533 0.2919744 2.6757483  1800
[306]  {stalk.surface.below.ring=k} => {stalk.shape=e}              0.1772526  0.6250000 0.2836041 1.4441126  1440
[307]  {stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.5625000 0.2836041 1.2102092  1296
[308]  {stalk.surface.below.ring=k} => {class=p}                    0.2658789  0.9375000 0.2836041 1.9449055  2160
[309]  {class=p}                    => {stalk.surface.below.ring=k} 0.2658789  0.5515832 0.4820286 1.9449055  2160
[310]  {stalk.surface.below.ring=k} => {population=v}               0.1861152  0.6562500 0.2836041 1.3196473  1512
[311]  {stalk.surface.below.ring=k} => {bruises=f}                  0.2836041  1.0000000 0.2836041 1.7110362  2304
[312]  {stalk.surface.below.ring=k} => {gill.size=b}                0.1772526  0.6250000 0.2836041 0.9047577  1440
[313]  {stalk.surface.below.ring=k} => {gill.spacing=c}             0.2658789  0.9375000 0.2836041 1.1180637  2160
[314]  {stalk.surface.below.ring=k} => {ring.number=o}              0.2658789  0.9375000 0.2836041 1.0171274  2160
[315]  {stalk.surface.below.ring=k} => {gill.attachment=f}          0.2836041  1.0000000 0.2836041 1.0265353  2304
[316]  {stalk.surface.below.ring=k} => {veil.color=w}               0.2836041  1.0000000 0.2836041 1.0252398  2304
[317]  {cap.surface=f}              => {habitat=d}                  0.1526342  0.5344828 0.2855736 1.3793323  1240
[318]  {cap.surface=f}              => {odor=n}                     0.1880847  0.6586207 0.2855736 1.5166198  1528
[319]  {cap.surface=f}              => {cap.shape=x}                0.1427868  0.5000000 0.2855736 1.1110503  1160
[320]  {cap.surface=f}              => {stalk.root=b}               0.2067947  0.7241379 0.2855736 1.5579705  1680
[321]  {cap.surface=f}              => {ring.type=p}                0.1536189  0.5379310 0.2855736 1.1013487  1248
[322]  {cap.surface=f}              => {class=e}                    0.1920236  0.6724138 0.2855736 1.2981677  1560
[323]  {cap.surface=f}              => {stalk.shape=t}              0.1595273  0.5586207 0.2855736 0.9848599  1296
[324]  {cap.surface=f}              => {bruises=f}                  0.1733136  0.6068966 0.2855736 1.0384220  1408
[325]  {cap.surface=f}              => {stalk.surface.below.ring=s} 0.1698671  0.5948276 0.2855736 0.9790072  1380
[326]  {cap.surface=f}              => {stalk.surface.above.ring=s} 0.1698671  0.5948276 0.2855736 0.9336127  1380
[327]  {cap.surface=f}              => {gill.size=b}                0.2511078  0.8793103 0.2855736 1.2729004  2040
[328]  {cap.surface=f}              => {gill.spacing=c}             0.2058099  0.7206897 0.2855736 0.8594954  1672
[329]  {cap.surface=f}              => {ring.number=o}              0.2678484  0.9379310 0.2855736 1.0175950  2176
[330]  {cap.surface=f}              => {gill.attachment=f}          0.2855736  1.0000000 0.2855736 1.0265353  2320
[331]  {cap.surface=f}              => {veil.color=w}               0.2855736  1.0000000 0.2855736 1.0252398  2320
[332]  {stalk.surface.above.ring=k} => {stalk.shape=e}              0.1856228  0.6357504 0.2919744 1.4689523  1508
[333]  {stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.5463744 0.2919744 1.1755152  1296
[334]  {stalk.surface.above.ring=k} => {class=p}                    0.2742491  0.9392917 0.2919744 1.9486226  2228
[335]  {class=p}                    => {stalk.surface.above.ring=k} 0.2742491  0.5689479 0.4820286 1.9486226  2228
[336]  {stalk.surface.above.ring=k} => {population=v}               0.1900542  0.6509275 0.2919744 1.3089443  1544
[337]  {stalk.surface.above.ring=k} => {bruises=f}                  0.2919744  1.0000000 0.2919744 1.7110362  2372
[338]  {stalk.surface.above.ring=k} => {gill.size=b}                0.1816839  0.6222597 0.2919744 0.9007908  1476
[339]  {stalk.surface.above.ring=k} => {gill.spacing=c}             0.2742491  0.9392917 0.2919744 1.1202005  2228
[340]  {stalk.surface.above.ring=k} => {ring.number=o}              0.2698178  0.9241147 0.2919744 1.0026052  2192
[341]  {stalk.surface.above.ring=k} => {gill.attachment=f}          0.2897587  0.9924115 0.2919744 1.0187454  2354
[342]  {stalk.surface.above.ring=k} => {veil.color=w}               0.2919744  1.0000000 0.2919744 1.0252398  2372
[343]  {spore.print.color=w}        => {stalk.root=?}               0.2757262  0.9380235 0.2939439 3.0727833  2240
[344]  {stalk.root=?}               => {spore.print.color=w}        0.2757262  0.9032258 0.3052683 3.0727833  2240
[345]  {spore.print.color=w}        => {gill.size=n}                0.2245199  0.7638191 0.2939439 2.4702493  1824
[346]  {gill.size=n}                => {spore.print.color=w}        0.2245199  0.7261146 0.3092073 2.4702493  1824
[347]  {spore.print.color=w}        => {ring.type=e}                0.2471689  0.8408710 0.2939439 2.4608199  2008
[348]  {ring.type=e}                => {spore.print.color=w}        0.2471689  0.7233429 0.3417036 2.4608199  2008
[349]  {spore.print.color=w}        => {class=p}                    0.2230428  0.7587940 0.2939439 1.5741681  1812
[350]  {spore.print.color=w}        => {population=v}               0.2245199  0.7638191 0.2939439 1.5359570  1824
[351]  {spore.print.color=w}        => {stalk.color.below.ring=w}   0.1585426  0.5393635 0.2939439 0.9994957  1288
[352]  {spore.print.color=w}        => {stalk.color.above.ring=w}   0.1683900  0.5728643 0.2939439 1.0425515  1368
[353]  {spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.7236181 0.2939439 1.2757538  1728
[354]  {spore.print.color=w}        => {bruises=f}                  0.2653865  0.9028476 0.2939439 1.5448049  2156
[355]  {spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1555884  0.5293132 0.2939439 0.8711792  1264
[356]  {spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1555884  0.5293132 0.2939439 0.8307845  1264
[357]  {spore.print.color=w}        => {gill.spacing=c}             0.2506155  0.8525963 0.2939439 1.0168075  2036
[358]  {spore.print.color=w}        => {ring.number=o}              0.2245199  0.7638191 0.2939439 0.8286948  1824
[359]  {spore.print.color=w}        => {gill.attachment=f}          0.2917282  0.9924623 0.2939439 1.0187976  2370
[360]  {spore.print.color=w}        => {veil.color=w}               0.2929591  0.9966499 0.2939439 1.0218051  2380
[361]  {stalk.root=?}               => {gill.size=n}                0.2225505  0.7290323 0.3052683 2.3577460  1808
[362]  {gill.size=n}                => {stalk.root=?}               0.2225505  0.7197452 0.3092073 2.3577460  1808
[363]  {stalk.root=?}               => {cap.surface=s}              0.1595273  0.5225806 0.3052683 1.6609723  1296
[364]  {cap.surface=s}              => {stalk.root=?}               0.1595273  0.5070423 0.3146233 1.6609723  1296
[365]  {stalk.root=?}               => {ring.type=e}                0.2402757  0.7870968 0.3052683 2.3034489  1952
[366]  {ring.type=e}                => {stalk.root=?}               0.2402757  0.7031700 0.3417036 2.3034489  1952
[367]  {stalk.root=?}               => {class=p}                    0.2166420  0.7096774 0.3052683 1.4722726  1760
[368]  {stalk.root=?}               => {population=v}               0.2314131  0.7580645 0.3052683 1.5243852  1880
[369]  {stalk.root=?}               => {stalk.color.below.ring=w}   0.1595273  0.5225806 0.3052683 0.9683953  1296
[370]  {stalk.root=?}               => {stalk.color.above.ring=w}   0.1634663  0.5354839 0.3052683 0.9745231  1328
[371]  {stalk.root=?}               => {stalk.shape=t}              0.2127031  0.6967742 0.3052683 1.2284274  1728
[372]  {stalk.root=?}               => {bruises=f}                  0.2816347  0.9225806 0.3052683 1.5785689  2288
[373]  {stalk.root=?}               => {stalk.surface.below.ring=s} 0.1713442  0.5612903 0.3052683 0.9238093  1392
[374]  {stalk.root=?}               => {stalk.surface.above.ring=s} 0.1772526  0.5806452 0.3052683 0.9113526  1440
[375]  {stalk.root=?}               => {gill.spacing=c}             0.2698178  0.8838710 0.3052683 1.0541057  2192
[376]  {stalk.root=?}               => {ring.number=o}              0.2461841  0.8064516 0.3052683 0.8749483  2000
[377]  {stalk.root=?}               => {gill.attachment=f}          0.2816347  0.9225806 0.3052683 0.9470616  2288
[378]  {stalk.root=?}               => {veil.color=w}               0.2816347  0.9225806 0.3052683 0.9458664  2288
[379]  {gill.size=n}                => {ring.type=e}                0.2235352  0.7229299 0.3092073 2.1156638  1816
[380]  {ring.type=e}                => {gill.size=n}                0.2235352  0.6541787 0.3417036 2.1156638  1816
[381]  {gill.size=n}                => {class=p}                    0.2737568  0.8853503 0.3092073 1.8367176  2224
[382]  {class=p}                    => {gill.size=n}                0.2737568  0.5679265 0.4820286 1.8367176  2224
[383]  {gill.size=n}                => {population=v}               0.2708026  0.8757962 0.3092073 1.7611307  2200
[384]  {population=v}               => {gill.size=n}                0.2708026  0.5445545 0.4972920 1.7611307  2200
[385]  {gill.size=n}                => {stalk.color.below.ring=w}   0.1920236  0.6210191 0.3092073 1.1508119  1560
[386]  {gill.size=n}                => {stalk.color.above.ring=w}   0.2018710  0.6528662 0.3092073 1.1881464  1640
[387]  {gill.size=n}                => {stalk.shape=t}              0.2245199  0.7261146 0.3092073 1.2801553  1824
[388]  {gill.size=n}                => {bruises=f}                  0.2648941  0.8566879 0.3092073 1.4658240  2152
[389]  {gill.size=n}                => {stalk.surface.below.ring=s} 0.1890694  0.6114650 0.3092073 1.0063901  1536
[390]  {gill.size=n}                => {stalk.surface.above.ring=s} 0.1949778  0.6305732 0.3092073 0.9897174  1584
[391]  {gill.size=n}                => {gill.spacing=c}             0.2776957  0.8980892 0.3092073 1.0710623  2256
[392]  {gill.size=n}                => {ring.number=o}              0.3092073  1.0000000 0.3092073 1.0849359  2512
[393]  {gill.size=n}                => {gill.attachment=f}          0.3092073  1.0000000 0.3092073 1.0265353  2512
[394]  {gill.size=n}                => {veil.color=w}               0.3082226  0.9968153 0.3092073 1.0219747  2504
[395]  {cap.surface=s}              => {ring.type=e}                0.1654357  0.5258216 0.3146233 1.5388237  1344
[396]  {cap.surface=s}              => {class=p}                    0.1738060  0.5524257 0.3146233 1.1460434  1412
[397]  {cap.surface=s}              => {population=v}               0.1610044  0.5117371 0.3146233 1.0290476  1308
[398]  {cap.surface=s}              => {stalk.color.below.ring=w}   0.2309207  0.7339593 0.3146233 1.3601016  1876
[399]  {cap.surface=s}              => {stalk.color.above.ring=w}   0.2309207  0.7339593 0.3146233 1.3357270  1876
[400]  {cap.surface=s}              => {stalk.shape=t}              0.1949778  0.6197183 0.3146233 1.0925763  1584
[401]  {cap.surface=s}              => {bruises=f}                  0.2077794  0.6604069 0.3146233 1.1299801  1688
[402]  {cap.surface=s}              => {stalk.surface.below.ring=s} 0.2102413  0.6682316 0.3146233 1.0998204  1708
[403]  {cap.surface=s}              => {stalk.surface.above.ring=s} 0.2102413  0.6682316 0.3146233 1.0488241  1708
[404]  {cap.surface=s}              => {gill.size=b}                0.1747907  0.5555556 0.3146233 0.8042290  1420
[405]  {cap.surface=s}              => {gill.spacing=c}             0.2378139  0.7558685 0.3146233 0.9014498  1932
[406]  {cap.surface=s}              => {ring.number=o}              0.2776957  0.8826291 0.3146233 0.9575960  2256
[407]  {cap.surface=s}              => {gill.attachment=f}          0.2909897  0.9248826 0.3146233 0.9494246  2364
[408]  {cap.surface=s}              => {veil.color=w}               0.2909897  0.9248826 0.3146233 0.9482265  2364
[409]  {ring.type=e}                => {class=p}                    0.2176268  0.6368876 0.3417036 1.3212653  1768
[410]  {ring.type=e}                => {population=v}               0.2225505  0.6512968 0.3417036 1.3096870  1808
[411]  {ring.type=e}                => {stalk.color.below.ring=w}   0.2127031  0.6224784 0.3417036 1.1535161  1728
[412]  {ring.type=e}                => {stalk.color.above.ring=w}   0.2225505  0.6512968 0.3417036 1.1852902  1808
[413]  {ring.type=e}                => {stalk.shape=t}              0.3072378  0.8991354 0.3417036 1.5851945  2496
[414]  {stalk.shape=t}              => {ring.type=e}                0.3072378  0.5416667 0.5672083 1.5851945  2496
[415]  {ring.type=e}                => {bruises=f}                  0.3180699  0.9308357 0.3417036 1.5926937  2584
[416]  {bruises=f}                  => {ring.type=e}                0.3180699  0.5442291 0.5844412 1.5926937  2584
[417]  {ring.type=e}                => {stalk.surface.below.ring=s} 0.1802068  0.5273775 0.3417036 0.8679933  1464
[418]  {ring.type=e}                => {stalk.surface.above.ring=s} 0.1802068  0.5273775 0.3417036 0.8277463  1464
[419]  {ring.type=e}                => {gill.spacing=c}             0.2402757  0.7031700 0.3417036 0.8386015  1952
[420]  {ring.type=e}                => {ring.number=o}              0.3180699  0.9308357 0.3417036 1.0098971  2584
[421]  {ring.type=e}                => {gill.attachment=f}          0.3417036  1.0000000 0.3417036 1.0265353  2776
[422]  {ring.type=e}                => {veil.color=w}               0.3407189  0.9971182 0.3417036 1.0222852  2768
[423]  {habitat=d}                  => {bruises=t}                  0.2245199  0.5794155 0.3874938 1.3943044  1824
[424]  {bruises=t}                  => {habitat=d}                  0.2245199  0.5402844 0.4155588 1.3943044  1824
[425]  {habitat=d}                  => {odor=n}                     0.2235352  0.5768742 0.3874938 1.3283804  1816
[426]  {odor=n}                     => {habitat=d}                  0.2235352  0.5147392 0.4342688 1.3283804  1816
[427]  {habitat=d}                  => {stalk.root=b}               0.3023141  0.7801779 0.3874938 1.6785395  2456
[428]  {stalk.root=b}               => {habitat=d}                  0.3023141  0.6504237 0.4647957 1.6785395  2456
[429]  {habitat=d}                  => {ring.type=p}                0.2491384  0.6429479 0.3874938 1.3163581  2024
[430]  {ring.type=p}                => {habitat=d}                  0.2491384  0.5100806 0.4884293 1.3163581  2024
[431]  {habitat=d}                  => {population=v}               0.2343673  0.6048285 0.3874938 1.2162442  1904
[432]  {habitat=d}                  => {class=e}                    0.2314131  0.5972046 0.3874938 1.1529681  1880
[433]  {habitat=d}                  => {stalk.shape=t}              0.2954210  0.7623888 0.3874938 1.3441074  2400
[434]  {stalk.shape=t}              => {habitat=d}                  0.2954210  0.5208333 0.5672083 1.3441074  2400
[435]  {habitat=d}                  => {stalk.surface.below.ring=s} 0.2836041  0.7318933 0.3874938 1.2045990  2304
[436]  {habitat=d}                  => {stalk.surface.above.ring=s} 0.2895126  0.7471410 0.3874938 1.1726766  2352
[437]  {habitat=d}                  => {gill.size=b}                0.2712949  0.7001271 0.3874938 1.0135125  2204
[438]  {habitat=d}                  => {gill.spacing=c}             0.3638602  0.9390089 0.3874938 1.1198632  2956
[439]  {habitat=d}                  => {ring.number=o}              0.3820778  0.9860229 0.3874938 1.0697716  3104
[440]  {habitat=d}                  => {gill.attachment=f}          0.3852782  0.9942821 0.3874938 1.0206656  3130
[441]  {habitat=d}                  => {veil.color=w}               0.3874938  1.0000000 0.3874938 1.0252398  3148
[442]  {cap.shape=f}                => {stalk.root=b}               0.2188577  0.5640863 0.3879862 1.2136221  1778
[443]  {cap.shape=f}                => {population=v}               0.2013786  0.5190355 0.3879862 1.0437239  1636
[444]  {cap.shape=f}                => {class=e}                    0.1964549  0.5063452 0.3879862 0.9775542  1596
[445]  {cap.shape=f}                => {stalk.shape=t}              0.2481536  0.6395939 0.3879862 1.1276174  2016
[446]  {cap.shape=f}                => {bruises=f}                  0.2159035  0.5564721 0.3879862 0.9521439  1754
[447]  {cap.shape=f}                => {stalk.surface.below.ring=s} 0.2213195  0.5704315 0.3879862 0.9388544  1798
[448]  {cap.shape=f}                => {stalk.surface.above.ring=s} 0.2360906  0.6085025 0.3879862 0.9550762  1918
[449]  {cap.shape=f}                => {gill.size=b}                0.2850812  0.7347716 0.3879862 1.0636643  2316
[450]  {cap.shape=f}                => {gill.spacing=c}             0.3323486  0.8565990 0.3879862 1.0215811  2700
[451]  {cap.shape=f}                => {ring.number=o}              0.3717381  0.9581218 0.3879862 1.0395008  3020
[452]  {cap.shape=f}                => {gill.attachment=f}          0.3813392  0.9828680 0.3879862 1.0089487  3098
[453]  {cap.shape=f}                => {veil.color=w}               0.3818316  0.9841371 0.3879862 1.0089765  3102
[454]  {cap.surface=y}              => {class=p}                    0.2141802  0.5363748 0.3993107 1.1127450  1740
[455]  {cap.surface=y}              => {population=v}               0.2205810  0.5524044 0.3993107 1.1108252  1792
[456]  {cap.surface=y}              => {stalk.shape=t}              0.2127031  0.5326757 0.3993107 0.9391184  1728
[457]  {cap.surface=y}              => {bruises=f}                  0.2033481  0.5092478 0.3993107 0.8713415  1652
[458]  {cap.surface=y}              => {stalk.surface.below.ring=s} 0.2269818  0.5684340 0.3993107 0.9355669  1844
[459]  {cap.surface=y}              => {stalk.surface.above.ring=s} 0.2565239  0.6424168 0.3993107 1.0083064  2084
[460]  {cap.surface=y}              => {gill.size=b}                0.2648941  0.6633785 0.3993107 0.9603149  2152
[461]  {cap.surface=y}              => {gill.spacing=c}             0.3948794  0.9889026 0.3993107 1.1793665  3208
[462]  {cap.surface=y}              => {ring.number=o}              0.3756770  0.9408138 0.3993107 1.0207227  3052
[463]  {cap.surface=y}              => {gill.attachment=f}          0.3970950  0.9944513 0.3993107 1.0208393  3226
[464]  {cap.surface=y}              => {veil.color=w}               0.3983259  0.9975339 0.3993107 1.0227114  3236
[465]  {bruises=t}                  => {odor=n}                     0.2501231  0.6018957 0.4155588 1.3859980  2032
[466]  {odor=n}                     => {bruises=t}                  0.2501231  0.5759637 0.4342688 1.3859980  2032
[467]  {bruises=t}                  => {stalk.root=b}               0.2737568  0.6587678 0.4155588 1.4173277  2224
[468]  {stalk.root=b}               => {bruises=t}                  0.2737568  0.5889831 0.4647957 1.4173277  2224
[469]  {bruises=t}                  => {ring.type=p}                0.3919252  0.9431280 0.4155588 1.9309404  3184
[470]  {ring.type=p}                => {bruises=t}                  0.3919252  0.8024194 0.4884293 1.9309404  3184
[471]  {bruises=t}                  => {class=e}                    0.3387494  0.8151659 0.4155588 1.5737661  2752
[472]  {class=e}                    => {bruises=t}                  0.3387494  0.6539924 0.5179714 1.5737661  2752
[473]  {bruises=t}                  => {stalk.color.below.ring=w}   0.2619399  0.6303318 0.4155588 1.1680692  2128
[474]  {bruises=t}                  => {stalk.color.above.ring=w}   0.2619399  0.6303318 0.4155588 1.1471360  2128
[475]  {bruises=t}                  => {stalk.shape=t}              0.2599705  0.6255924 0.4155588 1.1029325  2112
[476]  {bruises=t}                  => {stalk.surface.below.ring=s} 0.3741999  0.9004739 0.4155588 1.4820604  3040
[477]  {stalk.surface.below.ring=s} => {bruises=t}                  0.3741999  0.6158833 0.6075825 1.4820604  3040
[478]  {bruises=t}                  => {stalk.surface.above.ring=s} 0.3978336  0.9573460 0.4155588 1.5026041  3232
[479]  {stalk.surface.above.ring=s} => {bruises=t}                  0.3978336  0.6244204 0.6371246 1.5026041  3232
[480]  {bruises=t}                  => {gill.size=b}                0.3712457  0.8933649 0.4155588 1.2932460  3016
[481]  {gill.size=b}                => {bruises=t}                  0.3712457  0.5374198 0.6907927 1.2932460  3016
[482]  {bruises=t}                  => {gill.spacing=c}             0.4027573  0.9691943 0.4155588 1.1558624  3272
[483]  {bruises=t}                  => {ring.number=o}              0.3791236  0.9123223 0.4155588 0.9898112  3080
[484]  {bruises=t}                  => {gill.attachment=f}          0.4155588  1.0000000 0.4155588 1.0265353  3376
[485]  {bruises=t}                  => {veil.color=w}               0.4155588  1.0000000 0.4155588 1.0252398  3376
[486]  {stalk.shape=e}              => {class=p}                    0.2338749  0.5403868 0.4327917 1.1210680  1900
[487]  {stalk.shape=e}              => {ring.type=p}                0.2284589  0.5278726 0.4327917 1.0807553  1856
[488]  {stalk.shape=e}              => {stalk.color.below.ring=w}   0.2205810  0.5096701 0.4327917 0.9444707  1792
[489]  {stalk.shape=e}              => {stalk.color.above.ring=w}   0.2304284  0.5324232 0.4327917 0.9689530  1872
[490]  {stalk.shape=e}              => {bruises=f}                  0.2772033  0.6405006 0.4327917 1.0959197  2252
[491]  {stalk.shape=e}              => {stalk.surface.above.ring=s} 0.2412605  0.5574516 0.4327917 0.8749492  1960
[492]  {stalk.shape=e}              => {gill.size=b}                0.3481044  0.8043231 0.4327917 1.1643480  2828
[493]  {gill.size=b}                => {stalk.shape=e}              0.3481044  0.5039202 0.6907927 1.1643480  2828
[494]  {stalk.shape=e}              => {gill.spacing=c}             0.3776465  0.8725825 0.4327917 1.0406430  3068
[495]  {stalk.shape=e}              => {ring.number=o}              0.3545052  0.8191126 0.4327917 0.8886847  2880
[496]  {stalk.shape=e}              => {gill.attachment=f}          0.4069424  0.9402730 0.4327917 0.9652234  3306
[497]  {stalk.shape=e}              => {veil.color=w}               0.4081733  0.9431172 0.4327917 0.9669212  3316
[498]  {odor=n}                     => {stalk.root=b}               0.2343673  0.5396825 0.4342688 1.1611178  1904
[499]  {stalk.root=b}               => {odor=n}                     0.2343673  0.5042373 0.4647957 1.1611178  1904
[500]  {odor=n}                     => {ring.type=p}                0.2993599  0.6893424 0.4342688 1.4113452  2432
[501]  {ring.type=p}                => {odor=n}                     0.2993599  0.6129032 0.4884293 1.4113452  2432
[502]  {odor=n}                     => {class=e}                    0.4194978  0.9659864 0.4342688 1.8649414  3408
[503]  {class=e}                    => {odor=n}                     0.4194978  0.8098859 0.5179714 1.8649414  3408
[504]  {odor=n}                     => {stalk.color.below.ring=w}   0.2442147  0.5623583 0.4342688 1.0421074  1984
[505]  {odor=n}                     => {stalk.color.above.ring=w}   0.2540620  0.5850340 0.4342688 1.0646990  2064
[506]  {odor=n}                     => {stalk.shape=t}              0.3072378  0.7074830 0.4342688 1.2473073  2496
[507]  {stalk.shape=t}              => {odor=n}                     0.3072378  0.5416667 0.5672083 1.2473073  2496
[508]  {odor=n}                     => {stalk.surface.below.ring=s} 0.3535204  0.8140590 0.4342688 1.3398329  2872
[509]  {stalk.surface.below.ring=s} => {odor=n}                     0.3535204  0.5818476 0.6075825 1.3398329  2872
[510]  {odor=n}                     => {stalk.surface.above.ring=s} 0.3594289  0.8276644 0.4342688 1.2990621  2920
[511]  {stalk.surface.above.ring=s} => {odor=n}                     0.3594289  0.5641422 0.6371246 1.2990621  2920
[512]  {odor=n}                     => {gill.size=b}                0.4047267  0.9319728 0.4342688 1.3491352  3288
[513]  {gill.size=b}                => {odor=n}                     0.4047267  0.5858874 0.6907927 1.3491352  3288
[514]  {odor=n}                     => {gill.spacing=c}             0.2964057  0.6825397 0.4342688 0.8139977  2408
[515]  {odor=n}                     => {ring.number=o}              0.3604136  0.8299320 0.4342688 0.9004230  2928
[516]  {odor=n}                     => {gill.attachment=f}          0.4106352  0.9455782 0.4342688 0.9706694  3336
[517]  {odor=n}                     => {veil.color=w}               0.4096504  0.9433107 0.4342688 0.9671196  3328
[518]  {cap.shape=x}                => {stalk.root=b}               0.2378139  0.5284464 0.4500246 1.1369435  1932
[519]  {stalk.root=b}               => {cap.shape=x}                0.2378139  0.5116525 0.4647957 1.1369435  1932
[520]  {cap.shape=x}                => {ring.type=p}                0.2368291  0.5262582 0.4500246 1.0774500  1924
[521]  {cap.shape=x}                => {class=e}                    0.2397834  0.5328228 0.4500246 1.0286721  1948
[522]  {cap.shape=x}                => {stalk.color.below.ring=w}   0.2491384  0.5536105 0.4500246 1.0258968  2024
[523]  {cap.shape=x}                => {stalk.color.above.ring=w}   0.2520926  0.5601751 0.4500246 1.0194584  2048
[524]  {cap.shape=x}                => {stalk.shape=t}              0.2481536  0.5514223 0.4500246 0.9721690  2016
[525]  {cap.shape=x}                => {bruises=f}                  0.2511078  0.5579869 0.4500246 0.9547357  2040
[526]  {cap.shape=x}                => {stalk.surface.below.ring=s} 0.2776957  0.6170678 0.4500246 1.0156116  2256
[527]  {cap.shape=x}                => {stalk.surface.above.ring=s} 0.2924668  0.6498906 0.4500246 1.0200369  2376
[528]  {cap.shape=x}                => {gill.size=b}                0.3239783  0.7199125 0.4500246 1.0421541  2632
[529]  {cap.shape=x}                => {gill.spacing=c}             0.3712457  0.8249453 0.4500246 0.9838308  3016
[530]  {cap.shape=x}                => {ring.number=o}              0.4263909  0.9474836 0.4500246 1.0279590  3464
[531]  {cap.shape=x}                => {gill.attachment=f}          0.4433776  0.9852298 0.4500246 1.0113731  3602
[532]  {cap.shape=x}                => {veil.color=w}               0.4441162  0.9868709 0.4500246 1.0117793  3608
[533]  {stalk.root=b}               => {ring.type=p}                0.2993599  0.6440678 0.4647957 1.3186509  2432
[534]  {ring.type=p}                => {stalk.root=b}               0.2993599  0.6129032 0.4884293 1.3186509  2432
[535]  {stalk.root=b}               => {population=v}               0.2442147  0.5254237 0.4647957 1.0565699  1984
[536]  {stalk.root=b}               => {class=e}                    0.2363368  0.5084746 0.4647957 0.9816653  1920
[537]  {stalk.root=b}               => {stalk.shape=t}              0.2599705  0.5593220 0.4647957 0.9860964  2112
[538]  {stalk.root=b}               => {stalk.surface.below.ring=s} 0.2826194  0.6080508 0.4647957 1.0007709  2296
[539]  {stalk.root=b}               => {stalk.surface.above.ring=s} 0.2826194  0.6080508 0.4647957 0.9543673  2296
[540]  {stalk.root=b}               => {gill.size=b}                0.4224520  0.9088983 0.4647957 1.3157323  3432
[541]  {gill.size=b}                => {stalk.root=b}               0.4224520  0.6115467 0.6907927 1.3157323  3432
[542]  {stalk.root=b}               => {gill.spacing=c}             0.4342688  0.9343220 0.4647957 1.1142737  3528
[543]  {gill.spacing=c}             => {stalk.root=b}               0.4342688  0.5179096 0.8385032 1.1142737  3528
[544]  {stalk.root=b}               => {ring.number=o}              0.4500246  0.9682203 0.4647957 1.0504570  3656
[545]  {stalk.root=b}               => {gill.attachment=f}          0.4647957  1.0000000 0.4647957 1.0265353  3776
[546]  {stalk.root=b}               => {veil.color=w}               0.4647957  1.0000000 0.4647957 1.0252398  3776
[547]  {class=p}                    => {population=v}               0.3505662  0.7272727 0.4820286 1.4624662  2848
[548]  {population=v}               => {class=p}                    0.3505662  0.7049505 0.4972920 1.4624662  2848
[549]  {class=p}                    => {stalk.shape=t}              0.2481536  0.5148110 0.4820286 0.9076226  2016
[550]  {class=p}                    => {bruises=f}                  0.4052191  0.8406537 0.4820286 1.4383890  3292
[551]  {bruises=f}                  => {class=p}                    0.4052191  0.6933446 0.5844412 1.4383890  3292
[552]  {class=p}                    => {gill.spacing=c}             0.4682422  0.9713994 0.4820286 1.1584922  3804
[553]  {gill.spacing=c}             => {class=p}                    0.4682422  0.5584263 0.8385032 1.1584922  3804
[554]  {class=p}                    => {ring.number=o}              0.4687346  0.9724208 0.4820286 1.0550143  3808
[555]  {ring.number=o}              => {class=p}                    0.4687346  0.5085470 0.9217134 1.0550143  3808
[556]  {class=p}                    => {gill.attachment=f}          0.4798129  0.9954035 0.4820286 1.0218168  3898
[557]  {class=p}                    => {veil.color=w}               0.4810438  0.9979571 0.4820286 1.0231453  3908
[558]  {ring.type=p}                => {class=e}                    0.3879862  0.7943548 0.4884293 1.5335881  3152
[559]  {class=e}                    => {ring.type=p}                0.3879862  0.7490494 0.5179714 1.5335881  3152
[560]  {ring.type=p}                => {stalk.color.below.ring=w}   0.3210241  0.6572581 0.4884293 1.2179664  2608
[561]  {stalk.color.below.ring=w}   => {ring.type=p}                0.3210241  0.5948905 0.5396356 1.2179664  2608
[562]  {ring.type=p}                => {stalk.color.above.ring=w}   0.3210241  0.6572581 0.4884293 1.1961390  2608
[563]  {stalk.color.above.ring=w}   => {ring.type=p}                0.3210241  0.5842294 0.5494830 1.1961390  2608
[564]  {ring.type=p}                => {stalk.shape=t}              0.2599705  0.5322581 0.4884293 0.9383821  2112
[565]  {ring.type=p}                => {stalk.surface.below.ring=s} 0.4273757  0.8750000 0.4884293 1.4401337  3472
[566]  {stalk.surface.below.ring=s} => {ring.type=p}                0.4273757  0.7034036 0.6075825 1.4401337  3472
[567]  {ring.type=p}                => {stalk.surface.above.ring=s} 0.4510094  0.9233871 0.4884293 1.4493039  3664
[568]  {stalk.surface.above.ring=s} => {ring.type=p}                0.4510094  0.7078825 0.6371246 1.4493039  3664
[569]  {ring.type=p}                => {gill.size=b}                0.4086657  0.8366935 0.4884293 1.2112078  3320
[570]  {gill.size=b}                => {ring.type=p}                0.4086657  0.5915895 0.6907927 1.2112078  3320
[571]  {ring.type=p}                => {gill.spacing=c}             0.4283604  0.8770161 0.4884293 1.0459306  3480
[572]  {gill.spacing=c}             => {ring.type=p}                0.4283604  0.5108632 0.8385032 1.0459306  3480
[573]  {ring.type=p}                => {ring.number=o}              0.4382078  0.8971774 0.4884293 0.9733800  3560
[574]  {ring.type=p}                => {gill.attachment=f}          0.4647957  0.9516129 0.4884293 0.9768642  3776
[575]  {ring.type=p}                => {veil.color=w}               0.4647957  0.9516129 0.4884293 0.9756314  3776
[576]  {population=v}               => {stalk.shape=t}              0.3485968  0.7009901 0.4972920 1.2358601  2832
[577]  {stalk.shape=t}              => {population=v}               0.3485968  0.6145833 0.5672083 1.2358601  2832
[578]  {population=v}               => {bruises=f}                  0.3348104  0.6732673 0.4972920 1.1519848  2720
[579]  {bruises=f}                  => {population=v}               0.3348104  0.5728728 0.5844412 1.1519848  2720
[580]  {population=v}               => {stalk.surface.below.ring=s} 0.2924668  0.5881188 0.4972920 0.9679654  2376
[581]  {population=v}               => {stalk.surface.above.ring=s} 0.2954210  0.5940594 0.4972920 0.9324070  2400
[582]  {population=v}               => {gill.spacing=c}             0.4736583  0.9524752 0.4972920 1.1359232  3848
[583]  {gill.spacing=c}             => {population=v}               0.4736583  0.5648855 0.8385032 1.1359232  3848
[584]  {population=v}               => {ring.number=o}              0.4864599  0.9782178 0.4972920 1.0613036  3952
[585]  {ring.number=o}              => {population=v}               0.4864599  0.5277778 0.9217134 1.0613036  3952
[586]  {population=v}               => {gill.attachment=f}          0.4854751  0.9762376 0.4972920 1.0021423  3944
[587]  {population=v}               => {veil.color=w}               0.4854751  0.9762376 0.4972920 1.0008776  3944
[588]  {class=e}                    => {stalk.color.below.ring=w}   0.3328410  0.6425856 0.5179714 1.1907767  2704
[589]  {stalk.color.below.ring=w}   => {class=e}                    0.3328410  0.6167883 0.5396356 1.1907767  2704
[590]  {class=e}                    => {stalk.color.above.ring=w}   0.3387494  0.6539924 0.5179714 1.1901958  2752
[591]  {stalk.color.above.ring=w}   => {class=e}                    0.3387494  0.6164875 0.5494830 1.1901958  2752
[592]  {class=e}                    => {stalk.shape=t}              0.3190547  0.6159696 0.5179714 1.0859672  2592
[593]  {stalk.shape=t}              => {class=e}                    0.3190547  0.5625000 0.5672083 1.0859672  2592
[594]  {class=e}                    => {stalk.surface.below.ring=s} 0.4185130  0.8079848 0.5179714 1.3298356  3400
[595]  {stalk.surface.below.ring=s} => {class=e}                    0.4185130  0.6888169 0.6075825 1.3298356  3400
[596]  {class=e}                    => {stalk.surface.above.ring=s} 0.4480551  0.8650190 0.5179714 1.3576921  3640
[597]  {stalk.surface.above.ring=s} => {class=e}                    0.4480551  0.7032457 0.6371246 1.3576921  3640
[598]  {class=e}                    => {gill.size=b}                0.4825209  0.9315589 0.5179714 1.3485361  3920
[599]  {gill.size=b}                => {class=e}                    0.4825209  0.6985032 0.6907927 1.3485361  3920
[600]  {class=e}                    => {gill.spacing=c}             0.3702610  0.7148289 0.5179714 0.8525059  3008
[601]  {class=e}                    => {ring.number=o}              0.4529788  0.8745247 0.5179714 0.9488033  3680
[602]  {class=e}                    => {gill.attachment=f}          0.4943378  0.9543726 0.5179714 0.9796971  4016
[603]  {gill.attachment=f}          => {class=e}                    0.4943378  0.5074551 0.9741507 0.9796971  4016
[604]  {class=e}                    => {veil.color=w}               0.4943378  0.9543726 0.5179714 0.9784608  4016
[605]  {veil.color=w}               => {class=e}                    0.4943378  0.5068147 0.9753816 0.9784608  4016
[606]  {stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.4332841  0.8029197 0.5396356 1.4612275  3520
[607]  {stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.4332841  0.7885305 0.5494830 1.4612275  3520
[608]  {stalk.color.below.ring=w}   => {stalk.shape=t}              0.3190547  0.5912409 0.5396356 1.0423700  2592
[609]  {stalk.shape=t}              => {stalk.color.below.ring=w}   0.3190547  0.5625000 0.5672083 1.0423700  2592
[610]  {stalk.color.below.ring=w}   => {bruises=f}                  0.2776957  0.5145985 0.5396356 0.8804967  2256
[611]  {stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.3741999  0.6934307 0.5396356 1.1412947  3040
[612]  {stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.3741999  0.6158833 0.6075825 1.1412947  3040
[613]  {stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.4037420  0.7481752 0.5396356 1.1742997  3280
[614]  {stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.4037420  0.6336940 0.6371246 1.1742997  3280
[615]  {stalk.color.below.ring=w}   => {gill.size=b}                0.3476120  0.6441606 0.5396356 0.9324948  2824
[616]  {gill.size=b}                => {stalk.color.below.ring=w}   0.3476120  0.5032074 0.6907927 0.9324948  2824
[617]  {stalk.color.below.ring=w}   => {gill.spacing=c}             0.3850320  0.7135036 0.5396356 0.8509254  3128
[618]  {stalk.color.below.ring=w}   => {ring.number=o}              0.4795667  0.8886861 0.5396356 0.9641675  3896
[619]  {ring.number=o}              => {stalk.color.below.ring=w}   0.4795667  0.5202991 0.9217134 0.9641675  3896
[620]  {stalk.color.below.ring=w}   => {gill.attachment=f}          0.5396356  1.0000000 0.5396356 1.0265353  4384
[621]  {gill.attachment=f}          => {stalk.color.below.ring=w}   0.5396356  0.5539550 0.9741507 1.0265353  4384
[622]  {stalk.color.below.ring=w}   => {veil.color=w}               0.5396356  1.0000000 0.5396356 1.0252398  4384
[623]  {veil.color=w}               => {stalk.color.below.ring=w}   0.5396356  0.5532559 0.9753816 1.0252398  4384
[624]  {stalk.color.above.ring=w}   => {stalk.shape=t}              0.3190547  0.5806452 0.5494830 1.0236895  2592
[625]  {stalk.shape=t}              => {stalk.color.above.ring=w}   0.3190547  0.5625000 0.5672083 1.0236895  2592
[626]  {stalk.color.above.ring=w}   => {bruises=f}                  0.2875431  0.5232975 0.5494830 0.8953810  2336
[627]  {stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.3771541  0.6863799 0.5494830 1.1296901  3064
[628]  {stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.3771541  0.6207455 0.6075825 1.1296901  3064
[629]  {stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.4066962  0.7401434 0.5494830 1.1616933  3304
[630]  {stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.4066962  0.6383308 0.6371246 1.1616933  3304
[631]  {stalk.color.above.ring=w}   => {gill.size=b}                0.3476120  0.6326165 0.5494830 0.9157834  2824
[632]  {gill.size=b}                => {stalk.color.above.ring=w}   0.3476120  0.5032074 0.6907927 0.9157834  2824
[633]  {stalk.color.above.ring=w}   => {gill.spacing=c}             0.3889710  0.7078853 0.5494830 0.8442249  3160
[634]  {stalk.color.above.ring=w}   => {ring.number=o}              0.4894141  0.8906810 0.5494830 0.9663318  3976
[635]  {ring.number=o}              => {stalk.color.above.ring=w}   0.4894141  0.5309829 0.9217134 0.9663318  3976
[636]  {stalk.color.above.ring=w}   => {gill.attachment=f}          0.5494830  1.0000000 0.5494830 1.0265353  4464
[637]  {gill.attachment=f}          => {stalk.color.above.ring=w}   0.5494830  0.5640637 0.9741507 1.0265353  4464
[638]  {stalk.color.above.ring=w}   => {veil.color=w}               0.5494830  1.0000000 0.5494830 1.0252398  4464
[639]  {veil.color=w}               => {stalk.color.above.ring=w}   0.5494830  0.5633518 0.9753816 1.0252398  4464
[640]  {stalk.shape=t}              => {bruises=f}                  0.3072378  0.5416667 0.5672083 0.9268113  2496
[641]  {bruises=f}                  => {stalk.shape=t}              0.3072378  0.5256950 0.5844412 0.9268113  2496
[642]  {stalk.shape=t}              => {stalk.surface.below.ring=s} 0.3958641  0.6979167 0.5672083 1.1486781  3216
[643]  {stalk.surface.below.ring=s} => {stalk.shape=t}              0.3958641  0.6515397 0.6075825 1.1486781  3216
[644]  {stalk.shape=t}              => {stalk.surface.above.ring=s} 0.3958641  0.6979167 0.5672083 1.0954163  3216
[645]  {stalk.surface.above.ring=s} => {stalk.shape=t}              0.3958641  0.6213292 0.6371246 1.0954163  3216
[646]  {stalk.shape=t}              => {gill.size=b}                0.3426883  0.6041667 0.5672083 0.8745991  2784
[647]  {stalk.shape=t}              => {gill.spacing=c}             0.4608567  0.8125000 0.5672083 0.9689885  3744
[648]  {gill.spacing=c}             => {stalk.shape=t}              0.4608567  0.5496183 0.8385032 0.9689885  3744
[649]  {stalk.shape=t}              => {ring.number=o}              0.5672083  1.0000000 0.5672083 1.0849359  4608
[650]  {ring.number=o}              => {stalk.shape=t}              0.5672083  0.6153846 0.9217134 1.0849359  4608
[651]  {stalk.shape=t}              => {gill.attachment=f}          0.5672083  1.0000000 0.5672083 1.0265353  4608
[652]  {gill.attachment=f}          => {stalk.shape=t}              0.5672083  0.5822593 0.9741507 1.0265353  4608
[653]  {stalk.shape=t}              => {veil.color=w}               0.5672083  1.0000000 0.5672083 1.0252398  4608
[654]  {veil.color=w}               => {stalk.shape=t}              0.5672083  0.5815245 0.9753816 1.0252398  4608
[655]  {bruises=f}                  => {gill.size=b}                0.3195470  0.5467565 0.5844412 0.7914915  2596
[656]  {bruises=f}                  => {gill.spacing=c}             0.4357459  0.7455771 0.5844412 0.8891762  3540
[657]  {gill.spacing=c}             => {bruises=f}                  0.4357459  0.5196712 0.8385032 0.8891762  3540
[658]  {bruises=f}                  => {ring.number=o}              0.5425899  0.9283909 0.5844412 1.0072446  4408
[659]  {ring.number=o}              => {bruises=f}                  0.5425899  0.5886752 0.9217134 1.0072446  4408
[660]  {bruises=f}                  => {gill.attachment=f}          0.5585918  0.9557709 0.5844412 0.9811325  4538
[661]  {gill.attachment=f}          => {bruises=f}                  0.5585918  0.5734142 0.9741507 0.9811325  4538
[662]  {bruises=f}                  => {veil.color=w}               0.5598227  0.9578770 0.5844412 0.9820536  4548
[663]  {veil.color=w}               => {bruises=f}                  0.5598227  0.5739525 0.9753816 0.9820536  4548
[664]  {stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.5115707  0.8419773 0.6075825 1.3215270  4156
[665]  {stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.5115707  0.8029366 0.6371246 1.3215270  4156
[666]  {stalk.surface.below.ring=s} => {gill.size=b}                0.4185130  0.6888169 0.6075825 0.9971397  3400
[667]  {gill.size=b}                => {stalk.surface.below.ring=s} 0.4185130  0.6058446 0.6907927 0.9971397  3400
[668]  {stalk.surface.below.ring=s} => {gill.spacing=c}             0.5150172  0.8476499 0.6075825 1.0109084  4184
[669]  {gill.spacing=c}             => {stalk.surface.below.ring=s} 0.5150172  0.6142102 0.8385032 1.0109084  4184
[670]  {stalk.surface.below.ring=s} => {ring.number=o}              0.5534220  0.9108590 0.6075825 0.9882236  4496
[671]  {ring.number=o}              => {stalk.surface.below.ring=s} 0.5534220  0.6004274 0.9217134 0.9882236  4496
[672]  {stalk.surface.below.ring=s} => {gill.attachment=f}          0.5839488  0.9611021 0.6075825 0.9866052  4744
[673]  {gill.attachment=f}          => {stalk.surface.below.ring=s} 0.5839488  0.5994440 0.9741507 0.9866052  4744
[674]  {stalk.surface.below.ring=s} => {veil.color=w}               0.5839488  0.9611021 0.6075825 0.9853601  4744
[675]  {veil.color=w}               => {stalk.surface.below.ring=s} 0.5839488  0.5986875 0.9753816 0.9853601  4744
[676]  {stalk.surface.above.ring=s} => {gill.size=b}                0.4421467  0.6939722 0.6371246 1.0046026  3592
[677]  {gill.size=b}                => {stalk.surface.above.ring=s} 0.4421467  0.6400570 0.6907927 1.0046026  3592
[678]  {stalk.surface.above.ring=s} => {gill.spacing=c}             0.5445593  0.8547141 0.6371246 1.0193331  4424
[679]  {gill.spacing=c}             => {stalk.surface.above.ring=s} 0.5445593  0.6494422 0.8385032 1.0193331  4424
[680]  {stalk.surface.above.ring=s} => {ring.number=o}              0.5829641  0.9149923 0.6371246 0.9927080  4736
[681]  {ring.number=o}              => {stalk.surface.above.ring=s} 0.5829641  0.6324786 0.9217134 0.9927080  4736
[682]  {stalk.surface.above.ring=s} => {gill.attachment=f}          0.6134909  0.9629057 0.6371246 0.9884567  4984
[683]  {gill.attachment=f}          => {stalk.surface.above.ring=s} 0.6134909  0.6297700 0.9741507 0.9884567  4984
[684]  {stalk.surface.above.ring=s} => {veil.color=w}               0.6134909  0.9629057 0.6371246 0.9872092  4984
[685]  {veil.color=w}               => {stalk.surface.above.ring=s} 0.6134909  0.6289753 0.9753816 0.9872092  4984
[686]  {gill.size=b}                => {gill.spacing=c}             0.5608075  0.8118318 0.6907927 0.9681916  4556
[687]  {gill.spacing=c}             => {gill.size=b}                0.5608075  0.6688197 0.8385032 0.9681916  4556
[688]  {gill.size=b}                => {ring.number=o}              0.6125062  0.8866714 0.6907927 0.9619817  4976
[689]  {ring.number=o}              => {gill.size=b}                0.6125062  0.6645299 0.9217134 0.9619817  4976
[690]  {gill.size=b}                => {gill.attachment=f}          0.6649434  0.9625802 0.6907927 0.9881225  5402
[691]  {gill.attachment=f}          => {gill.size=b}                0.6649434  0.6825878 0.9741507 0.9881225  5402
[692]  {gill.size=b}                => {veil.color=w}               0.6671590  0.9657876 0.6907927 0.9901639  5420
[693]  {veil.color=w}               => {gill.size=b}                0.6671590  0.6839980 0.9753816 0.9901639  5420
[694]  {gill.spacing=c}             => {ring.number=o}              0.7956672  0.9489137 0.8385032 1.0295105  6464
[695]  {ring.number=o}              => {gill.spacing=c}             0.7956672  0.8632479 0.9217134 1.0295105  6464
[696]  {gill.spacing=c}             => {gill.attachment=f}          0.8126539  0.9691720 0.8385032 0.9948893  6602
[697]  {gill.attachment=f}          => {gill.spacing=c}             0.8126539  0.8342178 0.9741507 0.9948893  6602
[698]  {gill.spacing=c}             => {veil.color=w}               0.8148695  0.9718144 0.8385032 0.9963428  6620
[699]  {veil.color=w}               => {gill.spacing=c}             0.8148695  0.8354366 0.9753816 0.9963428  6620
[700]  {ring.number=o}              => {gill.attachment=f}          0.8980798  0.9743590 0.9217134 1.0002138  7296
[701]  {gill.attachment=f}          => {ring.number=o}              0.8980798  0.9219105 0.9741507 1.0002138  7296
[702]  {ring.number=o}              => {veil.color=w}               0.8970950  0.9732906 0.9217134 0.9978562  7288
[703]  {veil.color=w}               => {ring.number=o}              0.8970950  0.9197375 0.9753816 0.9978562  7288
[704]  {gill.attachment=f}          => {veil.color=w}               0.9731659  0.9989891 0.9741507 1.0242034  7906
[705]  {veil.color=w}               => {gill.attachment=f}          0.9731659  0.9977284 0.9753816 1.0242034  7906
[706]  {bruises=f,                                                                                                
        habitat=l}                  => {ring.number=o}              0.1014279  1.0000000 0.1014279 1.0849359   824
[707]  {ring.number=o,                                                                                            
        habitat=l}                  => {bruises=f}                  0.1014279  0.9903846 0.1024126 1.6945840   824
[708]  {cap.color=w,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1280158  1.0000000 0.1280158 1.8198925  1040
[709]  {cap.color=w,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1280158  1.0000000 0.1280158 1.8531022  1040
[710]  {cap.color=w,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.1073363  0.8384615 0.1280158 0.9096770   872
[711]  {cap.color=w,                                                                                              
        ring.number=o}              => {stalk.color.below.ring=w}   0.1073363  1.0000000 0.1073363 1.8531022   872
[712]  {cap.color=w,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[713]  {cap.color=w,                                                                                              
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.1280158  1.0000000 0.1280158 1.8531022  1040
[714]  {cap.color=w,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[715]  {cap.color=w,                                                                                              
        veil.color=w}               => {stalk.color.below.ring=w}   0.1280158  1.0000000 0.1280158 1.8531022  1040
[716]  {cap.color=w,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.1073363  0.8384615 0.1280158 0.9096770   872
[717]  {cap.color=w,                                                                                              
        ring.number=o}              => {stalk.color.above.ring=w}   0.1073363  1.0000000 0.1073363 1.8198925   872
[718]  {cap.color=w,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[719]  {cap.color=w,                                                                                              
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.1280158  1.0000000 0.1280158 1.8198925  1040
[720]  {cap.color=w,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[721]  {cap.color=w,                                                                                              
        veil.color=w}               => {stalk.color.above.ring=w}   0.1280158  1.0000000 0.1280158 1.8198925  1040
[722]  {cap.color=w,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.1073363  1.0000000 0.1073363 1.0265353   872
[723]  {cap.color=w,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.1073363  0.8384615 0.1280158 0.9096770   872
[724]  {cap.color=w,                                                                                              
        ring.number=o}              => {veil.color=w}               0.1073363  1.0000000 0.1073363 1.0252398   872
[725]  {cap.color=w,                                                                                              
        veil.color=w}               => {ring.number=o}              0.1073363  0.8384615 0.1280158 0.9096770   872
[726]  {cap.color=w,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[727]  {cap.color=w,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[728]  {gill.color=n,                                                                                             
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1053668  1.0000000 0.1053668 1.5695518   856
[729]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {ring.type=p}                0.1053668  0.8991597 0.1171837 1.8409206   856
[730]  {gill.color=n,                                                                                             
        ring.type=p}                => {ring.number=o}              0.1053668  1.0000000 0.1053668 1.0849359   856
[731]  {gill.color=n,                                                                                             
        ring.number=o}              => {ring.type=p}                0.1053668  0.8167939 0.1290005 1.6722867   856
[732]  {class=e,                                                                                                  
        gill.color=n}               => {stalk.surface.above.ring=s} 0.1033973  0.8974359 0.1152142 1.4085721   840
[733]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {class=e}                    0.1033973  0.8823529 0.1171837 1.7034780   840
[734]  {class=e,                                                                                                  
        gill.color=n}               => {gill.size=b}                0.1083210  0.9401709 0.1152142 1.3610030   880
[735]  {gill.size=b,                                                                                              
        gill.color=n}               => {class=e}                    0.1083210  1.0000000 0.1083210 1.9306084   880
[736]  {class=e,                                                                                                  
        gill.color=n}               => {ring.number=o}              0.1152142  1.0000000 0.1152142 1.0849359   936
[737]  {gill.color=n,                                                                                             
        ring.number=o}              => {class=e}                    0.1152142  0.8931298 0.1290005 1.7242838   936
[738]  {class=e,                                                                                                  
        gill.color=n}               => {gill.attachment=f}          0.1073363  0.9316239 0.1152142 0.9563448   872
[739]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {class=e}                    0.1073363  0.8861789 0.1211226 1.7108643   872
[740]  {class=e,                                                                                                  
        gill.color=n}               => {veil.color=w}               0.1073363  0.9316239 0.1152142 0.9551379   872
[741]  {gill.color=n,                                                                                             
        veil.color=w}               => {class=e}                    0.1073363  0.8861789 0.1211226 1.7108643   872
[742]  {gill.color=n,                                                                                             
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1033973  0.9459459 0.1093058 1.4847111   840
[743]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1033973  0.8823529 0.1171837 1.4522357   840
[744]  {gill.color=n,                                                                                             
        stalk.surface.below.ring=s} => {ring.number=o}              0.1093058  1.0000000 0.1093058 1.0849359   888
[745]  {gill.color=n,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1093058  0.8473282 0.1290005 1.3945897   888
[746]  {gill.color=n,                                                                                             
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1014279  0.9279279 0.1093058 0.9525507   824
[747]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {stalk.surface.below.ring=s} 0.1014279  0.8373984 0.1211226 1.3782464   824
[748]  {gill.color=n,                                                                                             
        stalk.surface.below.ring=s} => {veil.color=w}               0.1014279  0.9279279 0.1093058 0.9513486   824
[749]  {gill.color=n,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1014279  0.8373984 0.1211226 1.3782464   824
[750]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {ring.number=o}              0.1171837  1.0000000 0.1171837 1.0849359   952
[751]  {gill.color=n,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1171837  0.9083969 0.1290005 1.4257760   952
[752]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1093058  0.9327731 0.1171837 0.9575245   888
[753]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {stalk.surface.above.ring=s} 0.1093058  0.9024390 0.1211226 1.4164248   888
[754]  {gill.color=n,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.1093058  0.9327731 0.1171837 0.9563161   888
[755]  {gill.color=n,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1093058  0.9024390 0.1211226 1.4164248   888
[756]  {gill.size=b,                                                                                              
        gill.color=n}               => {ring.number=o}              0.1083210  1.0000000 0.1083210 1.0849359   880
[757]  {gill.color=n,                                                                                             
        ring.number=o}              => {gill.size=b}                0.1083210  0.8396947 0.1290005 1.2155523   880
[758]  {gill.size=b,                                                                                              
        gill.color=n}               => {gill.attachment=f}          0.1004431  0.9272727 0.1083210 0.9518781   816
[759]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {gill.size=b}                0.1004431  0.8292683 0.1211226 1.2004589   816
[760]  {gill.size=b,                                                                                              
        gill.color=n}               => {veil.color=w}               0.1004431  0.9272727 0.1083210 0.9506769   816
[761]  {gill.color=n,                                                                                             
        veil.color=w}               => {gill.size=b}                0.1004431  0.8292683 0.1211226 1.2004589   816
[762]  {gill.color=n,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.1211226  0.9389313 0.1290005 0.9638461   984
[763]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {ring.number=o}              0.1211226  1.0000000 0.1211226 1.0849359   984
[764]  {gill.color=n,                                                                                             
        ring.number=o}              => {veil.color=w}               0.1211226  0.9389313 0.1290005 0.9626297   984
[765]  {gill.color=n,                                                                                             
        veil.color=w}               => {ring.number=o}              0.1211226  1.0000000 0.1211226 1.0849359   984
[766]  {gill.attachment=f,                                                                                        
        gill.color=n}               => {veil.color=w}               0.1211226  1.0000000 0.1211226 1.0252398   984
[767]  {gill.color=n,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.1211226  1.0000000 0.1211226 1.0265353   984
[768]  {cap.color=y,                                                                                              
        stalk.shape=e}              => {gill.size=b}                0.1230921  0.9765625 0.1260463 1.4136838  1000
[769]  {cap.color=y,                                                                                              
        gill.size=b}                => {stalk.shape=e}              0.1230921  1.0000000 0.1230921 2.3105802  1000
[770]  {cap.color=y,                                                                                              
        stalk.shape=e}              => {gill.spacing=c}             0.1250615  0.9921875 0.1260463 1.1832841  1016
[771]  {cap.color=y,                                                                                              
        gill.spacing=c}             => {stalk.shape=e}              0.1250615  1.0000000 0.1250615 2.3105802  1016
[772]  {cap.color=y,                                                                                              
        stalk.shape=e}              => {ring.number=o}              0.1260463  1.0000000 0.1260463 1.0849359  1024
[773]  {cap.color=y,                                                                                              
        ring.number=o}              => {stalk.shape=e}              0.1260463  0.9552239 0.1319547 2.2071214  1024
[774]  {cap.color=y,                                                                                              
        stalk.shape=e}              => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[775]  {cap.color=y,                                                                                              
        gill.attachment=f}          => {stalk.shape=e}              0.1260463  0.9552239 0.1319547 2.2071214  1024
[776]  {cap.color=y,                                                                                              
        stalk.shape=e}              => {veil.color=w}               0.1250615  0.9921875 0.1260463 1.0172301  1016
[777]  {cap.color=y,                                                                                              
        veil.color=w}               => {stalk.shape=e}              0.1250615  0.9548872 0.1309700 2.2063435  1016
[778]  {cap.color=y,                                                                                              
        gill.size=b}                => {gill.spacing=c}             0.1230921  1.0000000 0.1230921 1.1926013  1000
[779]  {cap.color=y,                                                                                              
        gill.spacing=c}             => {gill.size=b}                0.1230921  0.9842520 0.1250615 1.4248152  1000
[780]  {cap.color=y,                                                                                              
        gill.size=b}                => {ring.number=o}              0.1230921  1.0000000 0.1230921 1.0849359  1000
[781]  {cap.color=y,                                                                                              
        ring.number=o}              => {gill.size=b}                0.1230921  0.9328358 0.1319547 1.3503846  1000
[782]  {cap.color=y,                                                                                              
        gill.size=b}                => {gill.attachment=f}          0.1230921  1.0000000 0.1230921 1.0265353  1000
[783]  {cap.color=y,                                                                                              
        gill.attachment=f}          => {gill.size=b}                0.1230921  0.9328358 0.1319547 1.3503846  1000
[784]  {cap.color=y,                                                                                              
        gill.size=b}                => {veil.color=w}               0.1230921  1.0000000 0.1230921 1.0252398  1000
[785]  {cap.color=y,                                                                                              
        veil.color=w}               => {gill.size=b}                0.1230921  0.9398496 0.1309700 1.3605378  1000
[786]  {cap.color=y,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.1250615  1.0000000 0.1250615 1.0849359  1016
[787]  {cap.color=y,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.1250615  0.9477612 0.1319547 1.1303012  1016
[788]  {cap.color=y,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.1250615  1.0000000 0.1250615 1.0265353  1016
[789]  {cap.color=y,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.1250615  0.9477612 0.1319547 1.1303012  1016
[790]  {cap.color=y,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.1250615  1.0000000 0.1250615 1.0252398  1016
[791]  {cap.color=y,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.1250615  0.9548872 0.1309700 1.1387997  1016
[792]  {cap.color=y,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.1319547  1.0000000 0.1319547 1.0265353  1072
[793]  {cap.color=y,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.1319547  1.0000000 0.1319547 1.0849359  1072
[794]  {cap.color=y,                                                                                              
        ring.number=o}              => {veil.color=w}               0.1309700  0.9925373 0.1319547 1.0175887  1064
[795]  {cap.color=y,                                                                                              
        veil.color=w}               => {ring.number=o}              0.1309700  1.0000000 0.1309700 1.0849359  1064
[796]  {cap.color=y,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.1309700  0.9925373 0.1319547 1.0175887  1064
[797]  {cap.color=y,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.1309700  1.0000000 0.1309700 1.0265353  1064
[798]  {stalk.root=e,                                                                                             
        habitat=g}                  => {stalk.color.below.ring=w}   0.1102905  1.0000000 0.1102905 1.8531022   896
[799]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[800]  {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {stalk.root=e}               0.1102905  0.5221445 0.2112260 3.7874126   896
[801]  {stalk.root=e,                                                                                             
        habitat=g}                  => {stalk.color.above.ring=w}   0.1102905  1.0000000 0.1102905 1.8198925   896
[802]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[803]  {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {stalk.root=e}               0.1102905  0.5221445 0.2112260 3.7874126   896
[804]  {stalk.root=e,                                                                                             
        habitat=g}                  => {ring.number=o}              0.1102905  1.0000000 0.1102905 1.0849359   896
[805]  {stalk.root=e,                                                                                             
        ring.number=o}              => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[806]  {stalk.root=e,                                                                                             
        habitat=g}                  => {gill.attachment=f}          0.1102905  1.0000000 0.1102905 1.0265353   896
[807]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[808]  {stalk.root=e,                                                                                             
        habitat=g}                  => {veil.color=w}               0.1102905  1.0000000 0.1102905 1.0252398   896
[809]  {stalk.root=e,                                                                                             
        veil.color=w}               => {habitat=g}                  0.1102905  0.8000000 0.1378631 3.0256983   896
[810]  {odor=n,                                                                                                   
        stalk.root=e}               => {class=e}                    0.1063516  1.0000000 0.1063516 1.9306084   864
[811]  {class=e,                                                                                                  
        stalk.root=e}               => {odor=n}                     0.1063516  1.0000000 0.1063516 2.3027211   864
[812]  {odor=n,                                                                                                   
        stalk.root=e}               => {stalk.color.below.ring=w}   0.1063516  1.0000000 0.1063516 1.8531022   864
[813]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[814]  {odor=n,                                                                                                   
        stalk.root=e}               => {stalk.color.above.ring=w}   0.1063516  1.0000000 0.1063516 1.8198925   864
[815]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[816]  {odor=n,                                                                                                   
        stalk.root=e}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[817]  {bruises=f,                                                                                                
        stalk.root=e}               => {odor=n}                     0.1063516  1.0000000 0.1063516 2.3027211   864
[818]  {bruises=f,                                                                                                
        odor=n}                     => {stalk.root=e}               0.1063516  0.5775401 0.1841457 4.1892284   864
[819]  {odor=n,                                                                                                   
        stalk.root=e}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[820]  {stalk.root=e,                                                                                             
        ring.number=o}              => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[821]  {odor=n,                                                                                                   
        stalk.root=e}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[822]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[823]  {odor=n,                                                                                                   
        stalk.root=e}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[824]  {stalk.root=e,                                                                                             
        veil.color=w}               => {odor=n}                     0.1063516  0.7714286 0.1378631 1.7763848   864
[825]  {class=e,                                                                                                  
        stalk.root=e}               => {stalk.color.below.ring=w}   0.1063516  1.0000000 0.1063516 1.8531022   864
[826]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[827]  {class=e,                                                                                                  
        stalk.root=e}               => {stalk.color.above.ring=w}   0.1063516  1.0000000 0.1063516 1.8198925   864
[828]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[829]  {class=e,                                                                                                  
        stalk.root=e}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[830]  {bruises=f,                                                                                                
        stalk.root=e}               => {class=e}                    0.1063516  1.0000000 0.1063516 1.9306084   864
[831]  {class=e,                                                                                                  
        bruises=f}                  => {stalk.root=e}               0.1063516  0.5934066 0.1792221 4.3043171   864
[832]  {class=e,                                                                                                  
        stalk.root=e}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[833]  {stalk.root=e,                                                                                             
        ring.number=o}              => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[834]  {class=e,                                                                                                  
        stalk.root=e}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[835]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[836]  {class=e,                                                                                                  
        stalk.root=e}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[837]  {stalk.root=e,                                                                                             
        veil.color=w}               => {class=e}                    0.1063516  0.7714286 0.1378631 1.4893265   864
[838]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1378631  1.0000000 0.1378631 1.8198925  1120
[839]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1378631  1.0000000 0.1378631 1.8531022  1120
[840]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[841]  {bruises=f,                                                                                                
        stalk.root=e}               => {stalk.color.below.ring=w}   0.1063516  1.0000000 0.1063516 1.8531022   864
[842]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {ring.number=o}              0.1378631  1.0000000 0.1378631 1.0849359  1120
[843]  {stalk.root=e,                                                                                             
        ring.number=o}              => {stalk.color.below.ring=w}   0.1378631  1.0000000 0.1378631 1.8531022  1120
[844]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[845]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {stalk.color.below.ring=w}   0.1378631  1.0000000 0.1378631 1.8531022  1120
[846]  {stalk.root=e,                                                                                             
        stalk.color.below.ring=w}   => {veil.color=w}               0.1378631  1.0000000 0.1378631 1.0252398  1120
[847]  {stalk.root=e,                                                                                             
        veil.color=w}               => {stalk.color.below.ring=w}   0.1378631  1.0000000 0.1378631 1.8531022  1120
[848]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[849]  {bruises=f,                                                                                                
        stalk.root=e}               => {stalk.color.above.ring=w}   0.1063516  1.0000000 0.1063516 1.8198925   864
[850]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {ring.number=o}              0.1378631  1.0000000 0.1378631 1.0849359  1120
[851]  {stalk.root=e,                                                                                             
        ring.number=o}              => {stalk.color.above.ring=w}   0.1378631  1.0000000 0.1378631 1.8198925  1120
[852]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[853]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {stalk.color.above.ring=w}   0.1378631  1.0000000 0.1378631 1.8198925  1120
[854]  {stalk.root=e,                                                                                             
        stalk.color.above.ring=w}   => {veil.color=w}               0.1378631  1.0000000 0.1378631 1.0252398  1120
[855]  {stalk.root=e,                                                                                             
        veil.color=w}               => {stalk.color.above.ring=w}   0.1378631  1.0000000 0.1378631 1.8198925  1120
[856]  {bruises=f,                                                                                                
        stalk.root=e}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[857]  {stalk.root=e,                                                                                             
        ring.number=o}              => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[858]  {bruises=f,                                                                                                
        stalk.root=e}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[859]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[860]  {bruises=f,                                                                                                
        stalk.root=e}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[861]  {stalk.root=e,                                                                                             
        veil.color=w}               => {bruises=f}                  0.1063516  0.7714286 0.1378631 1.3199422   864
[862]  {stalk.root=e,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[863]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {ring.number=o}              0.1378631  1.0000000 0.1378631 1.0849359  1120
[864]  {stalk.root=e,                                                                                             
        ring.number=o}              => {veil.color=w}               0.1378631  1.0000000 0.1378631 1.0252398  1120
[865]  {stalk.root=e,                                                                                             
        veil.color=w}               => {ring.number=o}              0.1378631  1.0000000 0.1378631 1.0849359  1120
[866]  {gill.attachment=f,                                                                                        
        stalk.root=e}               => {veil.color=w}               0.1378631  1.0000000 0.1378631 1.0252398  1120
[867]  {stalk.root=e,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[868]  {class=p,                                                                                                  
        habitat=p}                  => {bruises=f}                  0.1240768  1.0000000 0.1240768 1.7110362  1008
[869]  {bruises=f,                                                                                                
        habitat=p}                  => {class=p}                    0.1240768  0.9921260 0.1250615 2.0582307  1008
[870]  {class=p,                                                                                                  
        habitat=p}                  => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[871]  {gill.spacing=c,                                                                                           
        habitat=p}                  => {class=p}                    0.1240768  0.8811189 0.1408173 1.8279392  1008
[872]  {class=p,                                                                                                  
        habitat=p}                  => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[873]  {ring.number=o,                                                                                            
        habitat=p}                  => {class=p}                    0.1240768  0.9130435 0.1358936 1.8941689  1008
[874]  {class=p,                                                                                                  
        habitat=p}                  => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[875]  {gill.attachment=f,                                                                                        
        habitat=p}                  => {class=p}                    0.1240768  0.8811189 0.1408173 1.8279392  1008
[876]  {class=p,                                                                                                  
        habitat=p}                  => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[877]  {veil.color=w,                                                                                             
        habitat=p}                  => {class=p}                    0.1240768  0.8811189 0.1408173 1.8279392  1008
[878]  {bruises=f,                                                                                                
        habitat=p}                  => {gill.spacing=c}             0.1250615  1.0000000 0.1250615 1.1926013  1016
[879]  {gill.spacing=c,                                                                                           
        habitat=p}                  => {bruises=f}                  0.1250615  0.8881119 0.1408173 1.5195916  1016
[880]  {bruises=f,                                                                                                
        habitat=p}                  => {ring.number=o}              0.1240768  0.9921260 0.1250615 1.0763931  1008
[881]  {ring.number=o,                                                                                            
        habitat=p}                  => {bruises=f}                  0.1240768  0.9130435 0.1358936 1.5622505  1008
[882]  {bruises=f,                                                                                                
        habitat=p}                  => {gill.attachment=f}          0.1250615  1.0000000 0.1250615 1.0265353  1016
[883]  {gill.attachment=f,                                                                                        
        habitat=p}                  => {bruises=f}                  0.1250615  0.8881119 0.1408173 1.5195916  1016
[884]  {bruises=f,                                                                                                
        habitat=p}                  => {veil.color=w}               0.1250615  1.0000000 0.1250615 1.0252398  1016
[885]  {veil.color=w,                                                                                             
        habitat=p}                  => {bruises=f}                  0.1250615  0.8881119 0.1408173 1.5195916  1016
[886]  {gill.spacing=c,                                                                                           
        habitat=p}                  => {ring.number=o}              0.1358936  0.9650350 0.1408173 1.0470011  1104
[887]  {ring.number=o,                                                                                            
        habitat=p}                  => {gill.spacing=c}             0.1358936  1.0000000 0.1358936 1.1926013  1104
[888]  {gill.spacing=c,                                                                                           
        habitat=p}                  => {gill.attachment=f}          0.1408173  1.0000000 0.1408173 1.0265353  1144
[889]  {gill.attachment=f,                                                                                        
        habitat=p}                  => {gill.spacing=c}             0.1408173  1.0000000 0.1408173 1.1926013  1144
[890]  {gill.spacing=c,                                                                                           
        habitat=p}                  => {veil.color=w}               0.1408173  1.0000000 0.1408173 1.0252398  1144
[891]  {veil.color=w,                                                                                             
        habitat=p}                  => {gill.spacing=c}             0.1408173  1.0000000 0.1408173 1.1926013  1144
[892]  {ring.number=o,                                                                                            
        habitat=p}                  => {gill.attachment=f}          0.1358936  1.0000000 0.1358936 1.0265353  1104
[893]  {gill.attachment=f,                                                                                        
        habitat=p}                  => {ring.number=o}              0.1358936  0.9650350 0.1408173 1.0470011  1104
[894]  {ring.number=o,                                                                                            
        habitat=p}                  => {veil.color=w}               0.1358936  1.0000000 0.1358936 1.0252398  1104
[895]  {veil.color=w,                                                                                             
        habitat=p}                  => {ring.number=o}              0.1358936  0.9650350 0.1408173 1.0470011  1104
[896]  {gill.attachment=f,                                                                                        
        habitat=p}                  => {veil.color=w}               0.1408173  1.0000000 0.1408173 1.0252398  1144
[897]  {veil.color=w,                                                                                             
        habitat=p}                  => {gill.attachment=f}          0.1408173  1.0000000 0.1408173 1.0265353  1144
[898]  {bruises=t,                                                                                                
        gill.color=w}               => {ring.type=p}                0.1083210  0.9016393 0.1201379 1.8459975   880
[899]  {gill.color=w,                                                                                             
        ring.type=p}                => {bruises=t}                  0.1083210  0.8870968 0.1221073 2.1347080   880
[900]  {bruises=t,                                                                                                
        gill.color=w}               => {stalk.surface.below.ring=s} 0.1063516  0.8852459 0.1201379 1.4569971   864
[901]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {bruises=t}                  0.1063516  0.9230769 0.1152142 2.2212906   864
[902]  {bruises=t,                                                                                                
        gill.color=w}               => {stalk.surface.above.ring=s} 0.1142294  0.9508197 0.1201379 1.4923607   928
[903]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {bruises=t}                  0.1142294  0.9169960 0.1245692 2.2066576   928
[904]  {bruises=t,                                                                                                
        gill.color=w}               => {gill.size=b}                0.1073363  0.8934426 0.1201379 1.2933585   872
[905]  {gill.size=b,                                                                                              
        gill.color=w}               => {bruises=t}                  0.1073363  0.8702595 0.1233383 2.0941908   872
[906]  {bruises=t,                                                                                                
        gill.color=w}               => {gill.spacing=c}             0.1152142  0.9590164 0.1201379 1.1437242   936
[907]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {bruises=t}                  0.1152142  0.9230769 0.1248154 2.2212906   936
[908]  {bruises=t,                                                                                                
        gill.color=w}               => {ring.number=o}              0.1014279  0.8442623 0.1201379 0.9159705   824
[909]  {gill.color=w,                                                                                             
        ring.number=o}              => {bruises=t}                  0.1014279  0.8956522 0.1132447 2.1552957   824
[910]  {bruises=t,                                                                                                
        gill.color=w}               => {gill.attachment=f}          0.1201379  1.0000000 0.1201379 1.0265353   976
[911]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {bruises=t}                  0.1201379  0.8181056 0.1468488 1.9686878   976
[912]  {bruises=t,                                                                                                
        gill.color=w}               => {veil.color=w}               0.1201379  1.0000000 0.1201379 1.0252398   976
[913]  {gill.color=w,                                                                                             
        veil.color=w}               => {bruises=t}                  0.1201379  0.8146912 0.1474643 1.9604712   976
[914]  {gill.color=w,                                                                                             
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1004431  0.8225806 0.1221073 1.3538584   816
[915]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {ring.type=p}                0.1004431  0.8717949 0.1152142 1.7848945   816
[916]  {gill.color=w,                                                                                             
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1083210  0.8870968 0.1221073 1.3923443   880
[917]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {ring.type=p}                0.1083210  0.8695652 0.1245692 1.7803296   880
[918]  {gill.color=w,                                                                                             
        ring.type=p}                => {gill.size=b}                0.1093058  0.8951613 0.1221073 1.2958465   888
[919]  {gill.size=b,                                                                                              
        gill.color=w}               => {ring.type=p}                0.1093058  0.8862275 0.1233383 1.8144437   888
[920]  {gill.color=w,                                                                                             
        ring.type=p}                => {gill.spacing=c}             0.1053668  0.8629032 0.1221073 1.0290995   856
[921]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {ring.type=p}                0.1053668  0.8441815 0.1248154 1.7283594   856
[922]  {gill.color=w,                                                                                             
        ring.type=p}                => {ring.number=o}              0.1014279  0.8306452 0.1221073 0.9011968   824
[923]  {gill.color=w,                                                                                             
        ring.number=o}              => {ring.type=p}                0.1014279  0.8956522 0.1132447 1.8337395   824
[924]  {gill.color=w,                                                                                             
        ring.type=p}                => {gill.attachment=f}          0.1221073  1.0000000 0.1221073 1.0265353   992
[925]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {ring.type=p}                0.1221073  0.8315172 0.1468488 1.7024308   992
[926]  {gill.color=w,                                                                                             
        ring.type=p}                => {veil.color=w}               0.1221073  1.0000000 0.1221073 1.0252398   992
[927]  {gill.color=w,                                                                                             
        veil.color=w}               => {ring.type=p}                0.1221073  0.8280467 0.1474643 1.6953255   992
[928]  {class=e,                                                                                                  
        gill.color=w}               => {stalk.surface.above.ring=s} 0.1068439  0.9079498 0.1176760 1.4250742   868
[929]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {class=e}                    0.1068439  0.8577075 0.1245692 1.6558973   868
[930]  {class=e,                                                                                                  
        gill.color=w}               => {gill.size=b}                0.1063516  0.9037657 0.1176760 1.3083023   864
[931]  {gill.size=b,                                                                                              
        gill.color=w}               => {class=e}                    0.1063516  0.8622754 0.1233383 1.6647162   864
[932]  {class=e,                                                                                                  
        gill.color=w}               => {gill.attachment=f}          0.1176760  1.0000000 0.1176760 1.0265353   956
[933]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {class=e}                    0.1176760  0.8013412 0.1468488 1.5470759   956
[934]  {class=e,                                                                                                  
        gill.color=w}               => {veil.color=w}               0.1176760  1.0000000 0.1176760 1.0252398   956
[935]  {gill.color=w,                                                                                             
        veil.color=w}               => {class=e}                    0.1176760  0.7979967 0.1474643 1.5406190   956
[936]  {gill.color=w,                                                                                             
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1019202  1.0000000 0.1019202 1.0265353   828
[937]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {stalk.color.above.ring=w}   0.1019202  0.6940486 0.1468488 1.2630939   828
[938]  {gill.color=w,                                                                                             
        stalk.color.above.ring=w}   => {veil.color=w}               0.1019202  1.0000000 0.1019202 1.0252398   828
[939]  {gill.color=w,                                                                                             
        veil.color=w}               => {stalk.color.above.ring=w}   0.1019202  0.6911519 0.1474643 1.2578222   828
[940]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1078287  0.9358974 0.1152142 1.4689395   876
[941]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1078287  0.8656126 0.1245692 1.4246834   876
[942]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1014279  0.8803419 0.1152142 1.0498969   824
[943]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {stalk.surface.below.ring=s} 0.1014279  0.8126233 0.1248154 1.3374699   824
[944]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[945]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {stalk.surface.below.ring=s} 0.1152142  0.7845767 0.1468488 1.2913090   936
[946]  {gill.color=w,                                                                                             
        stalk.surface.below.ring=s} => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[947]  {gill.color=w,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1152142  0.7813022 0.1474643 1.2859195   936
[948]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {gill.size=b}                0.1073363  0.8616601 0.1245692 1.2473497   872
[949]  {gill.size=b,                                                                                              
        gill.color=w}               => {stalk.surface.above.ring=s} 0.1073363  0.8702595 0.1233383 1.3659173   872
[950]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1107829  0.8893281 0.1245692 1.0606138   900
[951]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {stalk.surface.above.ring=s} 0.1107829  0.8875740 0.1248154 1.3930933   900
[952]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1245692  1.0000000 0.1245692 1.0265353  1012
[953]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {stalk.surface.above.ring=s} 0.1245692  0.8482816 0.1468488 1.3314220  1012
[954]  {gill.color=w,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.1245692  1.0000000 0.1245692 1.0252398  1012
[955]  {gill.color=w,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1245692  0.8447412 0.1474643 1.3258651  1012
[956]  {gill.size=b,                                                                                              
        gill.color=w}               => {gill.spacing=c}             0.1115214  0.9041916 0.1233383 1.0783401   906
[957]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {gill.size=b}                0.1115214  0.8934911 0.1248154 1.2934287   906
[958]  {gill.size=b,                                                                                              
        gill.color=w}               => {gill.attachment=f}          0.1222304  0.9910180 0.1233383 1.0173149   993
[959]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {gill.size=b}                0.1222304  0.8323554 0.1468488 1.2049279   993
[960]  {gill.size=b,                                                                                              
        gill.color=w}               => {veil.color=w}               0.1233383  1.0000000 0.1233383 1.0252398  1002
[961]  {gill.color=w,                                                                                             
        veil.color=w}               => {gill.size=b}                0.1233383  0.8363940 0.1474643 1.2107742  1002
[962]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {ring.number=o}              0.1019202  0.8165680 0.1248154 0.8859240   828
[963]  {gill.color=w,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.1019202  0.9000000 0.1132447 1.0733412   828
[964]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {gill.attachment=f}          0.1237075  0.9911243 0.1248154 1.0174240  1005
[965]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {gill.spacing=c}             0.1237075  0.8424141 0.1468488 1.0046641  1005
[966]  {gill.spacing=c,                                                                                           
        gill.color=w}               => {veil.color=w}               0.1248154  1.0000000 0.1248154 1.0252398  1014
[967]  {gill.color=w,                                                                                             
        veil.color=w}               => {gill.spacing=c}             0.1248154  0.8464107 0.1474643 1.0094305  1014
[968]  {gill.color=w,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.1132447  1.0000000 0.1132447 1.0265353   920
[969]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {ring.number=o}              0.1132447  0.7711651 0.1468488 0.8366647   920
[970]  {gill.color=w,                                                                                             
        ring.number=o}              => {veil.color=w}               0.1127523  0.9956522 0.1132447 1.0207822   916
[971]  {gill.color=w,                                                                                             
        veil.color=w}               => {ring.number=o}              0.1127523  0.7646077 0.1474643 0.8295503   916
[972]  {gill.attachment=f,                                                                                        
        gill.color=w}               => {veil.color=w}               0.1463565  0.9966471 0.1468488 1.0218023  1189
[973]  {gill.color=w,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.1463565  0.9924875 0.1474643 1.0188234  1189
[974]  {population=s,                                                                                             
        habitat=g}                  => {stalk.color.below.ring=w}   0.1033973  1.0000000 0.1033973 1.8531022   840
[975]  {stalk.color.below.ring=w,                                                                                 
        population=s}               => {habitat=g}                  0.1033973  0.6730769 0.1536189 2.5456596   840
[976]  {population=s,                                                                                             
        habitat=g}                  => {stalk.color.above.ring=w}   0.1033973  1.0000000 0.1033973 1.8198925   840
[977]  {stalk.color.above.ring=w,                                                                                 
        population=s}               => {habitat=g}                  0.1033973  0.6730769 0.1536189 2.5456596   840
[978]  {population=s,                                                                                             
        habitat=g}                  => {gill.attachment=f}          0.1033973  1.0000000 0.1033973 1.0265353   840
[979]  {gill.attachment=f,                                                                                        
        population=s}               => {habitat=g}                  0.1033973  0.6730769 0.1536189 2.5456596   840
[980]  {population=s,                                                                                             
        habitat=g}                  => {veil.color=w}               0.1033973  1.0000000 0.1033973 1.0252398   840
[981]  {veil.color=w,                                                                                             
        population=s}               => {habitat=g}                  0.1033973  0.6730769 0.1536189 2.5456596   840
[982]  {ring.type=p,                                                                                              
        population=s}               => {stalk.color.below.ring=w}   0.1063516  1.0000000 0.1063516 1.8531022   864
[983]  {stalk.color.below.ring=w,                                                                                 
        population=s}               => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[984]  {ring.type=p,                                                                                              
        population=s}               => {stalk.color.above.ring=w}   0.1063516  1.0000000 0.1063516 1.8198925   864
[985]  {stalk.color.above.ring=w,                                                                                 
        population=s}               => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[986]  {ring.type=p,                                                                                              
        population=s}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[987]  {gill.attachment=f,                                                                                        
        population=s}               => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[988]  {ring.type=p,                                                                                              
        population=s}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[989]  {veil.color=w,                                                                                             
        population=s}               => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[990]  {class=e,                                                                                                  
        population=s}               => {stalk.color.below.ring=w}   0.1083210  1.0000000 0.1083210 1.8531022   880
[991]  {stalk.color.below.ring=w,                                                                                 
        population=s}               => {class=e}                    0.1083210  0.7051282 0.1536189 1.3613264   880
[992]  {class=e,                                                                                                  
        population=s}               => {stalk.color.above.ring=w}   0.1083210  1.0000000 0.1083210 1.8198925   880
[993]  {stalk.color.above.ring=w,                                                                                 
        population=s}               => {class=e}                    0.1083210  0.7051282 0.1536189 1.3613264   880
[994]  {class=e,                                                                                                  
        population=s}               => {gill.size=b}                0.1083210  1.0000000 0.1083210 1.4476123   880
[995]  {gill.size=b,                                                                                              
        population=s}               => {class=e}                    0.1083210  0.8593750 0.1260463 1.6591166   880
[996]  {class=e,                                                                                                  
        population=s}               => {gill.attachment=f}          0.1083210  1.0000000 0.1083210 1.0265353   880
[997]  {gill.attachment=f,                                                                                        
        population=s}               => {class=e}                    0.1083210  0.7051282 0.1536189 1.3613264   880
[998]  {class=e,                                                                                                  
        population=s}               => {veil.color=w}               0.1083210  1.0000000 0.1083210 1.0252398   880
[999]  {veil.color=w,                                                                                             
        population=s}               => {class=e}                    0.1083210  0.7051282 0.1536189 1.3613264   880
[1000] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {stalk.color.above.ring=w}   0.1536189  1.0000000 0.1536189 1.8198925  1248
[1001] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {stalk.color.below.ring=w}   0.1536189  1.0000000 0.1536189 1.8531022  1248
[1002] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {stalk.surface.below.ring=s} 0.1004431  0.6538462 0.1536189 1.0761439   816
[1003] {stalk.surface.below.ring=s,                                                                               
        population=s}               => {stalk.color.below.ring=w}   0.1004431  1.0000000 0.1004431 1.8531022   816
[1004] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {stalk.surface.above.ring=s} 0.1122600  0.7307692 0.1536189 1.1469801   912
[1005] {stalk.surface.above.ring=s,                                                                               
        population=s}               => {stalk.color.below.ring=w}   0.1122600  1.0000000 0.1122600 1.8531022   912
[1006] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {gill.size=b}                0.1260463  0.8205128 0.1536189 1.1877844  1024
[1007] {gill.size=b,                                                                                              
        population=s}               => {stalk.color.below.ring=w}   0.1260463  1.0000000 0.1260463 1.8531022  1024
[1008] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[1009] {ring.number=o,                                                                                            
        population=s}               => {stalk.color.below.ring=w}   0.1358936  1.0000000 0.1358936 1.8531022  1104
[1010] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[1011] {gill.attachment=f,                                                                                        
        population=s}               => {stalk.color.below.ring=w}   0.1536189  1.0000000 0.1536189 1.8531022  1248
[1012] {stalk.color.below.ring=w,                                                                                 
        population=s}               => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[1013] {veil.color=w,                                                                                             
        population=s}               => {stalk.color.below.ring=w}   0.1536189  1.0000000 0.1536189 1.8531022  1248
[1014] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {stalk.surface.below.ring=s} 0.1004431  0.6538462 0.1536189 1.0761439   816
[1015] {stalk.surface.below.ring=s,                                                                               
        population=s}               => {stalk.color.above.ring=w}   0.1004431  1.0000000 0.1004431 1.8198925   816
[1016] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {stalk.surface.above.ring=s} 0.1122600  0.7307692 0.1536189 1.1469801   912
[1017] {stalk.surface.above.ring=s,                                                                               
        population=s}               => {stalk.color.above.ring=w}   0.1122600  1.0000000 0.1122600 1.8198925   912
[1018] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {gill.size=b}                0.1260463  0.8205128 0.1536189 1.1877844  1024
[1019] {gill.size=b,                                                                                              
        population=s}               => {stalk.color.above.ring=w}   0.1260463  1.0000000 0.1260463 1.8198925  1024
[1020] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[1021] {ring.number=o,                                                                                            
        population=s}               => {stalk.color.above.ring=w}   0.1358936  1.0000000 0.1358936 1.8198925  1104
[1022] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[1023] {gill.attachment=f,                                                                                        
        population=s}               => {stalk.color.above.ring=w}   0.1536189  1.0000000 0.1536189 1.8198925  1248
[1024] {stalk.color.above.ring=w,                                                                                 
        population=s}               => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[1025] {veil.color=w,                                                                                             
        population=s}               => {stalk.color.above.ring=w}   0.1536189  1.0000000 0.1536189 1.8198925  1248
[1026] {stalk.surface.below.ring=s,                                                                               
        population=s}               => {gill.attachment=f}          0.1004431  1.0000000 0.1004431 1.0265353   816
[1027] {gill.attachment=f,                                                                                        
        population=s}               => {stalk.surface.below.ring=s} 0.1004431  0.6538462 0.1536189 1.0761439   816
[1028] {stalk.surface.below.ring=s,                                                                               
        population=s}               => {veil.color=w}               0.1004431  1.0000000 0.1004431 1.0252398   816
[1029] {veil.color=w,                                                                                             
        population=s}               => {stalk.surface.below.ring=s} 0.1004431  0.6538462 0.1536189 1.0761439   816
[1030] {stalk.surface.above.ring=s,                                                                               
        population=s}               => {ring.number=o}              0.1033973  0.9210526 0.1122600 0.9992831   840
[1031] {ring.number=o,                                                                                            
        population=s}               => {stalk.surface.above.ring=s} 0.1033973  0.7608696 0.1358936 1.1942242   840
[1032] {stalk.surface.above.ring=s,                                                                               
        population=s}               => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[1033] {gill.attachment=f,                                                                                        
        population=s}               => {stalk.surface.above.ring=s} 0.1122600  0.7307692 0.1536189 1.1469801   912
[1034] {stalk.surface.above.ring=s,                                                                               
        population=s}               => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[1035] {veil.color=w,                                                                                             
        population=s}               => {stalk.surface.above.ring=s} 0.1122600  0.7307692 0.1536189 1.1469801   912
[1036] {gill.size=b,                                                                                              
        population=s}               => {ring.number=o}              0.1083210  0.8593750 0.1260463 0.9323668   880
[1037] {ring.number=o,                                                                                            
        population=s}               => {gill.size=b}                0.1083210  0.7971014 0.1358936 1.1538938   880
[1038] {gill.size=b,                                                                                              
        population=s}               => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[1039] {gill.attachment=f,                                                                                        
        population=s}               => {gill.size=b}                0.1260463  0.8205128 0.1536189 1.1877844  1024
[1040] {gill.size=b,                                                                                              
        population=s}               => {veil.color=w}               0.1260463  1.0000000 0.1260463 1.0252398  1024
[1041] {veil.color=w,                                                                                             
        population=s}               => {gill.size=b}                0.1260463  0.8205128 0.1536189 1.1877844  1024
[1042] {ring.number=o,                                                                                            
        population=s}               => {gill.attachment=f}          0.1358936  1.0000000 0.1358936 1.0265353  1104
[1043] {gill.attachment=f,                                                                                        
        population=s}               => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[1044] {ring.number=o,                                                                                            
        population=s}               => {veil.color=w}               0.1358936  1.0000000 0.1358936 1.0252398  1104
[1045] {veil.color=w,                                                                                             
        population=s}               => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[1046] {gill.attachment=f,                                                                                        
        population=s}               => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[1047] {veil.color=w,                                                                                             
        population=s}               => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[1048] {ring.type=l,                                                                                              
        spore.print.color=h}        => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1049] {odor=f,                                                                                                   
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1050] {odor=f,                                                                                                   
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1051] {ring.type=l,                                                                                              
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1052] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1053] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {ring.type=l}                0.1595273  1.0000000 0.1595273 6.2685185  1296
[1054] {ring.type=l,                                                                                              
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1055] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1056] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {ring.type=l}                0.1595273  1.0000000 0.1595273 6.2685185  1296
[1057] {ring.type=l,                                                                                              
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1058] {stalk.shape=e,                                                                                            
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1059] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.9642857 0.1654357 6.0446429  1296
[1060] {ring.type=l,                                                                                              
        spore.print.color=h}        => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1061] {stalk.root=b,                                                                                             
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1062] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1063] {ring.type=l,                                                                                              
        spore.print.color=h}        => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1064] {class=p,                                                                                                  
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1065] {class=p,                                                                                                  
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1066] {ring.type=l,                                                                                              
        spore.print.color=h}        => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1067] {bruises=f,                                                                                                
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1068] {bruises=f,                                                                                                
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.9642857 0.1654357 6.0446429  1296
[1069] {ring.type=l,                                                                                              
        spore.print.color=h}        => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1070] {gill.size=b,                                                                                              
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1071] {gill.size=b,                                                                                              
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1072] {ring.type=l,                                                                                              
        spore.print.color=h}        => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1073] {gill.spacing=c,                                                                                           
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1074] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.7941176 0.2008863 4.9779412  1296
[1075] {ring.type=l,                                                                                              
        spore.print.color=h}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1076] {ring.number=o,                                                                                            
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1077] {ring.number=o,                                                                                            
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.7941176 0.2008863 4.9779412  1296
[1078] {ring.type=l,                                                                                              
        spore.print.color=h}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1079] {gill.attachment=f,                                                                                        
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1080] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.7941176 0.2008863 4.9779412  1296
[1081] {ring.type=l,                                                                                              
        spore.print.color=h}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1082] {veil.color=w,                                                                                             
        ring.type=l}                => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1083] {veil.color=w,                                                                                             
        spore.print.color=h}        => {ring.type=l}                0.1595273  0.7941176 0.2008863 4.9779412  1296
[1084] {odor=f,                                                                                                   
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1085] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1086] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1087] {odor=f,                                                                                                   
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1088] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1089] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1090] {odor=f,                                                                                                   
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1091] {stalk.shape=e,                                                                                            
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1092] {odor=f,                                                                                                   
        stalk.shape=e}              => {ring.type=l}                0.1595273  1.0000000 0.1595273 6.2685185  1296
[1093] {odor=f,                                                                                                   
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1094] {stalk.root=b,                                                                                             
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1095] {odor=f,                                                                                                   
        stalk.root=b}               => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1096] {odor=f,                                                                                                   
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1097] {class=p,                                                                                                  
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1098] {class=p,                                                                                                  
        odor=f}                     => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1099] {odor=f,                                                                                                   
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1100] {bruises=f,                                                                                                
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1101] {bruises=f,                                                                                                
        odor=f}                     => {ring.type=l}                0.1595273  0.6923077 0.2304284 4.3397436  1296
[1102] {odor=f,                                                                                                   
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1103] {gill.size=b,                                                                                              
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1104] {odor=f,                                                                                                   
        gill.size=b}                => {ring.type=l}                0.1595273  0.8181818 0.1949778 5.1287879  1296
[1105] {odor=f,                                                                                                   
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1106] {gill.spacing=c,                                                                                           
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1107] {odor=f,                                                                                                   
        gill.spacing=c}             => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1108] {odor=f,                                                                                                   
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1109] {ring.number=o,                                                                                            
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1110] {odor=f,                                                                                                   
        ring.number=o}              => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1111] {odor=f,                                                                                                   
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1112] {gill.attachment=f,                                                                                        
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1113] {odor=f,                                                                                                   
        gill.attachment=f}          => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1114] {odor=f,                                                                                                   
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1115] {veil.color=w,                                                                                             
        ring.type=l}                => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1116] {odor=f,                                                                                                   
        veil.color=w}               => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1117] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1118] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1119] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.7200000 0.2215657 4.5133333  1296
[1120] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1121] {stalk.shape=e,                                                                                            
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1122] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.9000000 0.1772526 5.6416667  1296
[1123] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1124] {stalk.root=b,                                                                                             
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1125] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  1.0000000 0.1595273 6.2685185  1296
[1126] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1127] {class=p,                                                                                                  
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1128] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1129] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1130] {bruises=f,                                                                                                
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1131] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.5625000 0.2836041 3.5260417  1296
[1132] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1133] {gill.size=b,                                                                                              
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1134] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.9000000 0.1772526 5.6416667  1296
[1135] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1136] {gill.spacing=c,                                                                                           
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1137] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1138] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1139] {ring.number=o,                                                                                            
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1140] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {ring.type=l}                0.1595273  0.6000000 0.2658789 3.7611111  1296
[1141] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1142] {gill.attachment=f,                                                                                        
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1143] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {ring.type=l}                0.1595273  0.5625000 0.2836041 3.5260417  1296
[1144] {stalk.surface.below.ring=k,                                                                               
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1145] {veil.color=w,                                                                                             
        ring.type=l}                => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1146] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {ring.type=l}                0.1595273  0.5625000 0.2836041 3.5260417  1296
[1147] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1148] {stalk.shape=e,                                                                                            
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1149] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.8594164 0.1856228 5.3872679  1296
[1150] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1151] {stalk.root=b,                                                                                             
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1152] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  1.0000000 0.1595273 6.2685185  1296
[1153] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1154] {class=p,                                                                                                  
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1155] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.5816876 0.2742491 3.6463196  1296
[1156] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1157] {bruises=f,                                                                                                
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1158] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.5463744 0.2919744 3.4249578  1296
[1159] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1160] {gill.size=b,                                                                                              
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1161] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.8780488 0.1816839 5.5040650  1296
[1162] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1163] {gill.spacing=c,                                                                                           
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1164] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.5816876 0.2742491 3.6463196  1296
[1165] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1166] {ring.number=o,                                                                                            
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1167] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {ring.type=l}                0.1595273  0.5912409 0.2698178 3.7062044  1296
[1168] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1169] {gill.attachment=f,                                                                                        
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1170] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {ring.type=l}                0.1595273  0.5505523 0.2897587 3.4511470  1296
[1171] {stalk.surface.above.ring=k,                                                                               
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1172] {veil.color=w,                                                                                             
        ring.type=l}                => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1173] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {ring.type=l}                0.1595273  0.5463744 0.2919744 3.4249578  1296
[1174] {stalk.shape=e,                                                                                            
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1175] {stalk.root=b,                                                                                             
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1176] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {ring.type=l}                0.1595273  0.7788462 0.2048252 4.8822115  1296
[1177] {stalk.shape=e,                                                                                            
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1178] {class=p,                                                                                                  
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1179] {class=p,                                                                                                  
        stalk.shape=e}              => {ring.type=l}                0.1595273  0.6821053 0.2338749 4.2757895  1296
[1180] {stalk.shape=e,                                                                                            
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1181] {bruises=f,                                                                                                
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1182] {bruises=f,                                                                                                
        stalk.shape=e}              => {ring.type=l}                0.1595273  0.5754885 0.2772033 3.6074600  1296
[1183] {stalk.shape=e,                                                                                            
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1184] {gill.size=b,                                                                                              
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1185] {stalk.shape=e,                                                                                            
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1186] {gill.spacing=c,                                                                                           
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1187] {stalk.shape=e,                                                                                            
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1188] {ring.number=o,                                                                                            
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1189] {stalk.shape=e,                                                                                            
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1190] {gill.attachment=f,                                                                                        
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1191] {stalk.shape=e,                                                                                            
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1192] {veil.color=w,                                                                                             
        ring.type=l}                => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1193] {stalk.root=b,                                                                                             
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1194] {class=p,                                                                                                  
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1195] {class=p,                                                                                                  
        stalk.root=b}               => {ring.type=l}                0.1595273  0.6982759 0.2284589 4.3771552  1296
[1196] {stalk.root=b,                                                                                             
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1197] {bruises=f,                                                                                                
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1198] {bruises=f,                                                                                                
        stalk.root=b}               => {ring.type=l}                0.1595273  0.8350515 0.1910389 5.2345361  1296
[1199] {stalk.root=b,                                                                                             
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1200] {gill.size=b,                                                                                              
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1201] {stalk.root=b,                                                                                             
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1202] {gill.spacing=c,                                                                                           
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1203] {stalk.root=b,                                                                                             
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1204] {ring.number=o,                                                                                            
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1205] {stalk.root=b,                                                                                             
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1206] {gill.attachment=f,                                                                                        
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1207] {stalk.root=b,                                                                                             
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1208] {veil.color=w,                                                                                             
        ring.type=l}                => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1209] {class=p,                                                                                                  
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1210] {bruises=f,                                                                                                
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1211] {class=p,                                                                                                  
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1212] {gill.size=b,                                                                                              
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1213] {class=p,                                                                                                  
        gill.size=b}                => {ring.type=l}                0.1595273  0.7659574 0.2082718 4.8014184  1296
[1214] {class=p,                                                                                                  
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1215] {gill.spacing=c,                                                                                           
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1216] {class=p,                                                                                                  
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1217] {ring.number=o,                                                                                            
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1218] {class=p,                                                                                                  
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1219] {gill.attachment=f,                                                                                        
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1220] {class=p,                                                                                                  
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1221] {veil.color=w,                                                                                             
        ring.type=l}                => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1222] {bruises=f,                                                                                                
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1223] {gill.size=b,                                                                                              
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1224] {bruises=f,                                                                                                
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1225] {gill.spacing=c,                                                                                           
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1226] {bruises=f,                                                                                                
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1227] {ring.number=o,                                                                                            
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1228] {bruises=f,                                                                                                
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1229] {gill.attachment=f,                                                                                        
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1230] {bruises=f,                                                                                                
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1231] {veil.color=w,                                                                                             
        ring.type=l}                => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1232] {gill.size=b,                                                                                              
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1233] {gill.spacing=c,                                                                                           
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1234] {gill.size=b,                                                                                              
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1235] {ring.number=o,                                                                                            
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1236] {gill.size=b,                                                                                              
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1237] {gill.attachment=f,                                                                                        
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1238] {gill.size=b,                                                                                              
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1239] {veil.color=w,                                                                                             
        ring.type=l}                => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1240] {gill.spacing=c,                                                                                           
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1241] {ring.number=o,                                                                                            
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1242] {gill.spacing=c,                                                                                           
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1243] {gill.attachment=f,                                                                                        
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1244] {gill.spacing=c,                                                                                           
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1245] {veil.color=w,                                                                                             
        ring.type=l}                => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1246] {ring.number=o,                                                                                            
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1247] {gill.attachment=f,                                                                                        
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1248] {ring.number=o,                                                                                            
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1249] {veil.color=w,                                                                                             
        ring.type=l}                => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1250] {gill.attachment=f,                                                                                        
        ring.type=l}                => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1251] {veil.color=w,                                                                                             
        ring.type=l}                => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1252] {gill.spacing=w,                                                                                           
        habitat=g}                  => {odor=n}                     0.1299852  1.0000000 0.1299852 2.3027211  1056
[1253] {odor=n,                                                                                                   
        gill.spacing=w}             => {habitat=g}                  0.1299852  0.9428571 0.1378631 3.5660016  1056
[1254] {odor=n,                                                                                                   
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.9670330 0.1344165 5.9879389  1056
[1255] {gill.spacing=w,                                                                                           
        habitat=g}                  => {class=e}                    0.1299852  1.0000000 0.1299852 1.9306084  1056
[1256] {class=e,                                                                                                  
        gill.spacing=w}             => {habitat=g}                  0.1299852  0.8800000 0.1477105 3.3282682  1056
[1257] {class=e,                                                                                                  
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.7500000 0.1733136 4.6440549  1056
[1258] {gill.spacing=w,                                                                                           
        habitat=g}                  => {stalk.color.below.ring=w}   0.1299852  1.0000000 0.1299852 1.8531022  1056
[1259] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {habitat=g}                  0.1299852  0.8407643 0.1546036 3.1798740  1056
[1260] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.6153846 0.2112260 3.8105066  1056
[1261] {gill.spacing=w,                                                                                           
        habitat=g}                  => {stalk.color.above.ring=w}   0.1299852  1.0000000 0.1299852 1.8198925  1056
[1262] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {habitat=g}                  0.1299852  0.8098160 0.1605121 3.0628235  1056
[1263] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.6153846 0.2112260 3.8105066  1056
[1264] {gill.spacing=w,                                                                                           
        habitat=g}                  => {bruises=f}                  0.1299852  1.0000000 0.1299852 1.7110362  1056
[1265] {bruises=f,                                                                                                
        gill.spacing=w}             => {habitat=g}                  0.1299852  0.8741722 0.1486952 3.3062266  1056
[1266] {bruises=f,                                                                                                
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.7096774 0.1831610 4.3943745  1056
[1267] {gill.spacing=w,                                                                                           
        habitat=g}                  => {gill.size=b}                0.1299852  1.0000000 0.1299852 1.4476123  1056
[1268] {gill.spacing=w,                                                                                           
        gill.size=b}                => {habitat=g}                  0.1299852  1.0000000 0.1299852 3.7821229  1056
[1269] {gill.size=b,                                                                                              
        habitat=g}                  => {gill.spacing=w}             0.1299852  0.5227723 0.2486460 3.2370442  1056
[1270] {gill.spacing=w,                                                                                           
        habitat=g}                  => {gill.attachment=f}          0.1299852  1.0000000 0.1299852 1.0265353  1056
[1271] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {habitat=g}                  0.1299852  0.8048780 0.1614968 3.0441477  1056
[1272] {gill.spacing=w,                                                                                           
        habitat=g}                  => {veil.color=w}               0.1299852  1.0000000 0.1299852 1.0252398  1056
[1273] {gill.spacing=w,                                                                                           
        veil.color=w}               => {habitat=g}                  0.1299852  0.8098160 0.1605121 3.0628235  1056
[1274] {gill.spacing=w,                                                                                           
        ring.type=e}                => {odor=n}                     0.1014279  1.0000000 0.1014279 2.3027211   824
[1275] {odor=n,                                                                                                   
        gill.spacing=w}             => {ring.type=e}                0.1014279  0.7357143 0.1378631 2.1530774   824
[1276] {odor=n,                                                                                                   
        ring.type=e}                => {gill.spacing=w}             0.1014279  0.7862595 0.1290005 4.8685766   824
[1277] {gill.spacing=w,                                                                                           
        ring.type=e}                => {class=e}                    0.1004431  0.9902913 0.1014279 1.9118646   816
[1278] {class=e,                                                                                                  
        gill.spacing=w}             => {ring.type=e}                0.1004431  0.6800000 0.1477105 1.9900288   816
[1279] {class=e,                                                                                                  
        ring.type=e}                => {gill.spacing=w}             0.1004431  0.8095238 0.1240768 5.0126307   816
[1280] {gill.spacing=w,                                                                                           
        ring.type=e}                => {stalk.color.above.ring=w}   0.1004431  0.9902913 0.1014279 1.8022236   816
[1281] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {ring.type=e}                0.1004431  0.6257669 0.1605121 1.8313149   816
[1282] {gill.spacing=w,                                                                                           
        ring.type=e}                => {bruises=f}                  0.1014279  1.0000000 0.1014279 1.7110362   824
[1283] {bruises=f,                                                                                                
        gill.spacing=w}             => {ring.type=e}                0.1014279  0.6821192 0.1486952 1.9962307   824
[1284] {gill.spacing=w,                                                                                           
        ring.type=e}                => {ring.number=o}              0.1014279  1.0000000 0.1014279 1.0849359   824
[1285] {gill.spacing=w,                                                                                           
        ring.number=o}              => {ring.type=e}                0.1014279  0.8046875 0.1260463 2.3549284   824
[1286] {gill.spacing=w,                                                                                           
        ring.type=e}                => {gill.attachment=f}          0.1014279  1.0000000 0.1014279 1.0265353   824
[1287] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {ring.type=e}                0.1014279  0.6280488 0.1614968 1.8379929   824
[1288] {gill.spacing=w,                                                                                           
        ring.type=e}                => {veil.color=w}               0.1004431  0.9902913 0.1014279 1.0152860   816
[1289] {gill.spacing=w,                                                                                           
        veil.color=w}               => {ring.type=e}                0.1004431  0.6257669 0.1605121 1.8313149   816
[1290] {odor=n,                                                                                                   
        gill.spacing=w}             => {class=e}                    0.1358936  0.9857143 0.1378631 1.9030282  1104
[1291] {class=e,                                                                                                  
        gill.spacing=w}             => {odor=n}                     0.1358936  0.9200000 0.1477105 2.1185034  1104
[1292] {odor=n,                                                                                                   
        gill.spacing=w}             => {stalk.color.below.ring=w}   0.1309700  0.9500000 0.1378631 1.7604471  1064
[1293] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {odor=n}                     0.1309700  0.8471338 0.1546036 1.9507128  1064
[1294] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {gill.spacing=w}             0.1309700  0.5362903 0.2442147 3.3207489  1064
[1295] {odor=n,                                                                                                   
        gill.spacing=w}             => {stalk.color.above.ring=w}   0.1368784  0.9928571 0.1378631 1.8068932  1112
[1296] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {odor=n}                     0.1368784  0.8527607 0.1605121 1.9636701  1112
[1297] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {gill.spacing=w}             0.1368784  0.5387597 0.2540620 3.3360394  1112
[1298] {odor=n,                                                                                                   
        gill.spacing=w}             => {bruises=f}                  0.1368784  0.9928571 0.1378631 1.6988145  1112
[1299] {bruises=f,                                                                                                
        gill.spacing=w}             => {odor=n}                     0.1368784  0.9205298 0.1486952 2.1197234  1112
[1300] {bruises=f,                                                                                                
        odor=n}                     => {gill.spacing=w}             0.1368784  0.7433155 0.1841457 4.6026640  1112
[1301] {odor=n,                                                                                                   
        gill.spacing=w}             => {gill.size=b}                0.1299852  0.9428571 0.1378631 1.3648916  1056
[1302] {gill.spacing=w,                                                                                           
        gill.size=b}                => {odor=n}                     0.1299852  1.0000000 0.1299852 2.3027211  1056
[1303] {odor=n,                                                                                                   
        gill.spacing=w}             => {ring.number=o}              0.1024126  0.7428571 0.1378631 0.8059524   832
[1304] {gill.spacing=w,                                                                                           
        ring.number=o}              => {odor=n}                     0.1024126  0.8125000 0.1260463 1.8709609   832
[1305] {odor=n,                                                                                                   
        gill.spacing=w}             => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[1306] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {odor=n}                     0.1378631  0.8536585 0.1614968 1.9657375  1120
[1307] {odor=n,                                                                                                   
        gill.spacing=w}             => {veil.color=w}               0.1368784  0.9928571 0.1378631 1.0179166  1112
[1308] {gill.spacing=w,                                                                                           
        veil.color=w}               => {odor=n}                     0.1368784  0.8527607 0.1605121 1.9636701  1112
[1309] {class=e,                                                                                                  
        gill.spacing=w}             => {stalk.color.below.ring=w}   0.1418021  0.9600000 0.1477105 1.7789781  1152
[1310] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {class=e}                    0.1418021  0.9171975 0.1546036 1.7707491  1152
[1311] {class=e,                                                                                                  
        gill.spacing=w}             => {stalk.color.above.ring=w}   0.1477105  1.0000000 0.1477105 1.8198925  1200
[1312] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {class=e}                    0.1477105  0.9202454 0.1605121 1.7766335  1200
[1313] {class=e,                                                                                                  
        gill.spacing=w}             => {stalk.shape=t}              0.1063516  0.7200000 0.1477105 1.2693750   864
[1314] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {class=e}                    0.1063516  1.0000000 0.1063516 1.9306084   864
[1315] {class=e,                                                                                                  
        gill.spacing=w}             => {bruises=f}                  0.1358936  0.9200000 0.1477105 1.5741533  1104
[1316] {bruises=f,                                                                                                
        gill.spacing=w}             => {class=e}                    0.1358936  0.9139073 0.1486952 1.7643970  1104
[1317] {class=e,                                                                                                  
        bruises=f}                  => {gill.spacing=w}             0.1358936  0.7582418 0.1792221 4.6950884  1104
[1318] {class=e,                                                                                                  
        gill.spacing=w}             => {gill.size=b}                0.1299852  0.8800000 0.1477105 1.2738988  1056
[1319] {gill.spacing=w,                                                                                           
        gill.size=b}                => {class=e}                    0.1299852  1.0000000 0.1299852 1.9306084  1056
[1320] {class=e,                                                                                                  
        gill.spacing=w}             => {ring.number=o}              0.1122600  0.7600000 0.1477105 0.8245513   912
[1321] {gill.spacing=w,                                                                                           
        ring.number=o}              => {class=e}                    0.1122600  0.8906250 0.1260463 1.7194481   912
[1322] {class=e,                                                                                                  
        gill.spacing=w}             => {gill.attachment=f}          0.1477105  1.0000000 0.1477105 1.0265353  1200
[1323] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {class=e}                    0.1477105  0.9146341 0.1614968 1.7658003  1200
[1324] {class=e,                                                                                                  
        gill.spacing=w}             => {veil.color=w}               0.1477105  1.0000000 0.1477105 1.0252398  1200
[1325] {gill.spacing=w,                                                                                           
        veil.color=w}               => {class=e}                    0.1477105  0.9202454 0.1605121 1.7766335  1200
[1326] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1546036  1.0000000 0.1546036 1.8198925  1256
[1327] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1546036  0.9631902 0.1605121 1.7848898  1256
[1328] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1063516  0.6878981 0.1546036 1.2127787   864
[1329] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1063516  1.0000000 0.1063516 1.8531022   864
[1330] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {bruises=f}                  0.1418021  0.9171975 0.1546036 1.5693581  1152
[1331] {bruises=f,                                                                                                
        gill.spacing=w}             => {stalk.color.below.ring=w}   0.1418021  0.9536424 0.1486952 1.7671968  1152
[1332] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {gill.spacing=w}             0.1418021  0.5106383 0.2776957 3.1619097  1152
[1333] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {gill.size=b}                0.1299852  0.8407643 0.1546036 1.2171008  1056
[1334] {gill.spacing=w,                                                                                           
        gill.size=b}                => {stalk.color.below.ring=w}   0.1299852  1.0000000 0.1299852 1.8531022  1056
[1335] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {ring.number=o}              0.1191531  0.7707006 0.1546036 0.8361608   968
[1336] {gill.spacing=w,                                                                                           
        ring.number=o}              => {stalk.color.below.ring=w}   0.1191531  0.9453125 0.1260463 1.7517607   968
[1337] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1546036  1.0000000 0.1546036 1.0265353  1256
[1338] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {stalk.color.below.ring=w}   0.1546036  0.9573171 0.1614968 1.7740064  1256
[1339] {gill.spacing=w,                                                                                           
        stalk.color.below.ring=w}   => {veil.color=w}               0.1546036  1.0000000 0.1546036 1.0252398  1256
[1340] {gill.spacing=w,                                                                                           
        veil.color=w}               => {stalk.color.below.ring=w}   0.1546036  0.9631902 0.1605121 1.7848898  1256
[1341] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1063516  0.6625767 0.1605121 1.1681365   864
[1342] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1063516  1.0000000 0.1063516 1.8198925   864
[1343] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {bruises=f}                  0.1477105  0.9202454 0.1605121 1.5745732  1200
[1344] {bruises=f,                                                                                                
        gill.spacing=w}             => {stalk.color.above.ring=w}   0.1477105  0.9933775 0.1486952 1.8078402  1200
[1345] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {gill.spacing=w}             0.1477105  0.5136986 0.2875431 3.1808595  1200
[1346] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {gill.size=b}                0.1299852  0.8098160 0.1605121 1.1722995  1056
[1347] {gill.spacing=w,                                                                                           
        gill.size=b}                => {stalk.color.above.ring=w}   0.1299852  1.0000000 0.1299852 1.8198925  1056
[1348] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {ring.number=o}              0.1250615  0.7791411 0.1605121 0.8453182  1016
[1349] {gill.spacing=w,                                                                                           
        ring.number=o}              => {stalk.color.above.ring=w}   0.1250615  0.9921875 0.1260463 1.8056746  1016
[1350] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1605121  1.0000000 0.1605121 1.0265353  1304
[1351] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {stalk.color.above.ring=w}   0.1605121  0.9939024 0.1614968 1.8087956  1304
[1352] {gill.spacing=w,                                                                                           
        stalk.color.above.ring=w}   => {veil.color=w}               0.1605121  1.0000000 0.1605121 1.0252398  1304
[1353] {gill.spacing=w,                                                                                           
        veil.color=w}               => {stalk.color.above.ring=w}   0.1605121  1.0000000 0.1605121 1.8198925  1304
[1354] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[1355] {gill.spacing=w,                                                                                           
        ring.number=o}              => {stalk.shape=t}              0.1063516  0.8437500 0.1260463 1.4875488   864
[1356] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[1357] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {stalk.shape=t}              0.1063516  0.6585366 0.1614968 1.1610137   864
[1358] {gill.spacing=w,                                                                                           
        stalk.shape=t}              => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[1359] {gill.spacing=w,                                                                                           
        veil.color=w}               => {stalk.shape=t}              0.1063516  0.6625767 0.1605121 1.1681365   864
[1360] {bruises=f,                                                                                                
        gill.spacing=w}             => {gill.size=b}                0.1299852  0.8741722 0.1486952 1.2654624  1056
[1361] {gill.spacing=w,                                                                                           
        gill.size=b}                => {bruises=f}                  0.1299852  1.0000000 0.1299852 1.7110362  1056
[1362] {bruises=f,                                                                                                
        gill.spacing=w}             => {ring.number=o}              0.1132447  0.7615894 0.1486952 0.8262757   920
[1363] {gill.spacing=w,                                                                                           
        ring.number=o}              => {bruises=f}                  0.1132447  0.8984375 0.1260463 1.5372591   920
[1364] {bruises=f,                                                                                                
        gill.spacing=w}             => {gill.attachment=f}          0.1486952  1.0000000 0.1486952 1.0265353  1208
[1365] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {bruises=f}                  0.1486952  0.9207317 0.1614968 1.5754053  1208
[1366] {bruises=f,                                                                                                
        gill.spacing=w}             => {veil.color=w}               0.1477105  0.9933775 0.1486952 1.0184501  1200
[1367] {gill.spacing=w,                                                                                           
        veil.color=w}               => {bruises=f}                  0.1477105  0.9202454 0.1605121 1.5745732  1200
[1368] {gill.spacing=w,                                                                                           
        gill.size=b}                => {gill.attachment=f}          0.1299852  1.0000000 0.1299852 1.0265353  1056
[1369] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {gill.size=b}                0.1299852  0.8048780 0.1614968 1.1651513  1056
[1370] {gill.spacing=w,                                                                                           
        gill.size=b}                => {veil.color=w}               0.1299852  1.0000000 0.1299852 1.0252398  1056
[1371] {gill.spacing=w,                                                                                           
        veil.color=w}               => {gill.size=b}                0.1299852  0.8098160 0.1605121 1.1722995  1056
[1372] {gill.spacing=w,                                                                                           
        ring.number=o}              => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[1373] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {ring.number=o}              0.1260463  0.7804878 0.1614968 0.8467792  1024
[1374] {gill.spacing=w,                                                                                           
        ring.number=o}              => {veil.color=w}               0.1250615  0.9921875 0.1260463 1.0172301  1016
[1375] {gill.spacing=w,                                                                                           
        veil.color=w}               => {ring.number=o}              0.1250615  0.7791411 0.1605121 0.8453182  1016
[1376] {gill.attachment=f,                                                                                        
        gill.spacing=w}             => {veil.color=w}               0.1605121  0.9939024 0.1614968 1.0189883  1304
[1377] {gill.spacing=w,                                                                                           
        veil.color=w}               => {gill.attachment=f}          0.1605121  1.0000000 0.1605121 1.0265353  1304
[1378] {gill.color=p,                                                                                             
        stalk.root=b}               => {gill.size=b}                0.1181684  0.9230769 0.1280158 1.3362575   960
[1379] {gill.size=b,                                                                                              
        gill.color=p}               => {stalk.root=b}               0.1181684  0.7317073 0.1614968 1.5742559   960
[1380] {gill.color=p,                                                                                             
        stalk.root=b}               => {gill.spacing=c}             0.1211226  0.9461538 0.1280158 1.1283843   984
[1381] {gill.spacing=c,                                                                                           
        gill.color=p}               => {stalk.root=b}               0.1211226  0.8571429 0.1413097 1.8441283   984
[1382] {gill.color=p,                                                                                             
        stalk.root=b}               => {ring.number=o}              0.1280158  1.0000000 0.1280158 1.0849359  1040
[1383] {gill.color=p,                                                                                             
        ring.number=o}              => {stalk.root=b}               0.1280158  0.7449857 0.1718365 1.6028240  1040
[1384] {gill.color=p,                                                                                             
        stalk.root=b}               => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[1385] {gill.attachment=f,                                                                                        
        gill.color=p}               => {stalk.root=b}               0.1280158  0.6970509 0.1836534 1.4996933  1040
[1386] {gill.color=p,                                                                                             
        stalk.root=b}               => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[1387] {gill.color=p,                                                                                             
        veil.color=w}               => {stalk.root=b}               0.1280158  0.6970509 0.1836534 1.4996933  1040
[1388] {gill.color=p,                                                                                             
        ring.type=p}                => {gill.attachment=f}          0.1053668  1.0000000 0.1053668 1.0265353   856
[1389] {gill.attachment=f,                                                                                        
        gill.color=p}               => {ring.type=p}                0.1053668  0.5737265 0.1836534 1.1746357   856
[1390] {gill.color=p,                                                                                             
        ring.type=p}                => {veil.color=w}               0.1053668  1.0000000 0.1053668 1.0252398   856
[1391] {gill.color=p,                                                                                             
        veil.color=w}               => {ring.type=p}                0.1053668  0.5737265 0.1836534 1.1746357   856
[1392] {class=e,                                                                                                  
        gill.color=p}               => {gill.attachment=f}          0.1048744  1.0000000 0.1048744 1.0265353   852
[1393] {gill.attachment=f,                                                                                        
        gill.color=p}               => {class=e}                    0.1048744  0.5710456 0.1836534 1.1024654   852
[1394] {class=e,                                                                                                  
        gill.color=p}               => {veil.color=w}               0.1048744  1.0000000 0.1048744 1.0252398   852
[1395] {gill.color=p,                                                                                             
        veil.color=w}               => {class=e}                    0.1048744  0.5710456 0.1836534 1.1024654   852
[1396] {gill.color=p,                                                                                             
        stalk.surface.above.ring=s} => {ring.number=o}              0.1009355  0.9447005 0.1068439 1.0249394   820
[1397] {gill.color=p,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1009355  0.5873926 0.1718365 0.9219430   820
[1398] {gill.color=p,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1068439  1.0000000 0.1068439 1.0265353   868
[1399] {gill.attachment=f,                                                                                        
        gill.color=p}               => {stalk.surface.above.ring=s} 0.1068439  0.5817694 0.1836534 0.9131173   868
[1400] {gill.color=p,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.1068439  1.0000000 0.1068439 1.0252398   868
[1401] {gill.color=p,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1068439  0.5817694 0.1836534 0.9131173   868
[1402] {gill.size=b,                                                                                              
        gill.color=p}               => {gill.spacing=c}             0.1260463  0.7804878 0.1614968 0.9308108  1024
[1403] {gill.spacing=c,                                                                                           
        gill.color=p}               => {gill.size=b}                0.1260463  0.8919861 0.1413097 1.2912500  1024
[1404] {gill.size=b,                                                                                              
        gill.color=p}               => {ring.number=o}              0.1496800  0.9268293 0.1614968 1.0055503  1216
[1405] {gill.color=p,                                                                                             
        ring.number=o}              => {gill.size=b}                0.1496800  0.8710602 0.1718365 1.2609574  1216
[1406] {gill.size=b,                                                                                              
        gill.color=p}               => {gill.attachment=f}          0.1614968  1.0000000 0.1614968 1.0265353  1312
[1407] {gill.attachment=f,                                                                                        
        gill.color=p}               => {gill.size=b}                0.1614968  0.8793566 0.1836534 1.2729673  1312
[1408] {gill.size=b,                                                                                              
        gill.color=p}               => {veil.color=w}               0.1614968  1.0000000 0.1614968 1.0252398  1312
[1409] {gill.color=p,                                                                                             
        veil.color=w}               => {gill.size=b}                0.1614968  0.8793566 0.1836534 1.2729673  1312
[1410] {gill.spacing=c,                                                                                           
        gill.color=p}               => {ring.number=o}              0.1413097  1.0000000 0.1413097 1.0849359  1148
[1411] {gill.color=p,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.1413097  0.8223496 0.1718365 0.9807352  1148
[1412] {gill.spacing=c,                                                                                           
        gill.color=p}               => {gill.attachment=f}          0.1413097  1.0000000 0.1413097 1.0265353  1148
[1413] {gill.attachment=f,                                                                                        
        gill.color=p}               => {gill.spacing=c}             0.1413097  0.7694370 0.1836534 0.9176316  1148
[1414] {gill.spacing=c,                                                                                           
        gill.color=p}               => {veil.color=w}               0.1413097  1.0000000 0.1413097 1.0252398  1148
[1415] {gill.color=p,                                                                                             
        veil.color=w}               => {gill.spacing=c}             0.1413097  0.7694370 0.1836534 0.9176316  1148
[1416] {gill.color=p,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.1718365  1.0000000 0.1718365 1.0265353  1396
[1417] {gill.attachment=f,                                                                                        
        gill.color=p}               => {ring.number=o}              0.1718365  0.9356568 0.1836534 1.0151277  1396
[1418] {gill.color=p,                                                                                             
        ring.number=o}              => {veil.color=w}               0.1718365  1.0000000 0.1718365 1.0252398  1396
[1419] {gill.color=p,                                                                                             
        veil.color=w}               => {ring.number=o}              0.1718365  0.9356568 0.1836534 1.0151277  1396
[1420] {gill.attachment=f,                                                                                        
        gill.color=p}               => {veil.color=w}               0.1836534  1.0000000 0.1836534 1.0252398  1492
[1421] {gill.color=p,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.1836534  1.0000000 0.1836534 1.0265353  1492
[1422] {cap.color=e,                                                                                              
        gill.color=b}               => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[1423] {cap.color=e,                                                                                              
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.9350649 0.1137371 4.3961039   864
[1424] {gill.color=b,                                                                                             
        spore.print.color=w}        => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1425] {cap.color=e,                                                                                              
        gill.color=b}               => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[1426] {cap.color=e,                                                                                              
        stalk.root=?}               => {gill.color=b}               0.1063516  0.9473684 0.1122600 4.4539474   864
[1427] {gill.color=b,                                                                                             
        stalk.root=?}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1428] {cap.color=e,                                                                                              
        gill.color=b}               => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[1429] {cap.color=e,                                                                                              
        gill.size=n}                => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[1430] {gill.size=n,                                                                                              
        gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1431] {cap.color=e,                                                                                              
        gill.color=b}               => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[1432] {cap.color=e,                                                                                              
        ring.type=e}                => {gill.color=b}               0.1063516  0.9473684 0.1122600 4.4539474   864
[1433] {gill.color=b,                                                                                             
        ring.type=e}                => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1434] {cap.color=e,                                                                                              
        gill.color=b}               => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[1435] {class=p,                                                                                                  
        cap.color=e}                => {gill.color=b}               0.1063516  0.9863014 0.1078287 4.6369863   864
[1436] {class=p,                                                                                                  
        gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1437] {cap.color=e,                                                                                              
        gill.color=b}               => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[1438] {cap.color=e,                                                                                              
        population=v}               => {gill.color=b}               0.1063516  0.7500000 0.1418021 3.5260417   864
[1439] {gill.color=b,                                                                                             
        population=v}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1440] {cap.color=e,                                                                                              
        gill.color=b}               => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[1441] {cap.color=e,                                                                                              
        stalk.shape=t}              => {gill.color=b}               0.1063516  0.6000000 0.1772526 2.8208333   864
[1442] {gill.color=b,                                                                                             
        stalk.shape=t}              => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1443] {cap.color=e,                                                                                              
        gill.color=b}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[1444] {cap.color=e,                                                                                              
        bruises=f}                  => {gill.color=b}               0.1063516  0.9863014 0.1078287 4.6369863   864
[1445] {bruises=f,                                                                                                
        gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1446] {cap.color=e,                                                                                              
        gill.color=b}               => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[1447] {cap.color=e,                                                                                              
        gill.spacing=c}             => {gill.color=b}               0.1063516  0.5760000 0.1846381 2.7080000   864
[1448] {gill.spacing=c,                                                                                           
        gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1449] {cap.color=e,                                                                                              
        gill.color=b}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[1450] {cap.color=e,                                                                                              
        ring.number=o}              => {gill.color=b}               0.1063516  0.6000000 0.1772526 2.8208333   864
[1451] {gill.color=b,                                                                                             
        ring.number=o}              => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1452] {cap.color=e,                                                                                              
        gill.color=b}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[1453] {cap.color=e,                                                                                              
        gill.attachment=f}          => {gill.color=b}               0.1063516  0.5783133 0.1838996 2.7188755   864
[1454] {gill.attachment=f,                                                                                        
        gill.color=b}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1455] {cap.color=e,                                                                                              
        gill.color=b}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[1456] {cap.color=e,                                                                                              
        veil.color=w}               => {gill.color=b}               0.1063516  0.5760000 0.1846381 2.7080000   864
[1457] {gill.color=b,                                                                                             
        veil.color=w}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1458] {cap.color=e,                                                                                              
        spore.print.color=w}        => {stalk.root=?}               0.1122600  0.9870130 0.1137371 3.2332635   912
[1459] {cap.color=e,                                                                                              
        stalk.root=?}               => {spore.print.color=w}        0.1122600  1.0000000 0.1122600 3.4020101   912
[1460] {cap.color=e,                                                                                              
        spore.print.color=w}        => {gill.size=n}                0.1063516  0.9350649 0.1137371 3.0240715   864
[1461] {cap.color=e,                                                                                              
        gill.size=n}                => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[1462] {cap.color=e,                                                                                              
        spore.print.color=w}        => {ring.type=e}                0.1122600  0.9870130 0.1137371 2.8885063   912
[1463] {cap.color=e,                                                                                              
        ring.type=e}                => {spore.print.color=w}        0.1122600  1.0000000 0.1122600 3.4020101   912
[1464] {cap.color=e,                                                                                              
        spore.print.color=w}        => {class=p}                    0.1078287  0.9480519 0.1137371 1.9667962   876
[1465] {class=p,                                                                                                  
        cap.color=e}                => {spore.print.color=w}        0.1078287  1.0000000 0.1078287 3.4020101   876
[1466] {cap.color=e,                                                                                              
        spore.print.color=w}        => {population=v}               0.1063516  0.9350649 0.1137371 1.8803137   864
[1467] {cap.color=e,                                                                                              
        population=v}               => {spore.print.color=w}        0.1063516  0.7500000 0.1418021 2.5515075   864
[1468] {cap.color=e,                                                                                              
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.9350649 0.1137371 1.6485390   864
[1469] {cap.color=e,                                                                                              
        stalk.shape=t}              => {spore.print.color=w}        0.1063516  0.6000000 0.1772526 2.0412060   864
[1470] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1471] {cap.color=e,                                                                                              
        spore.print.color=w}        => {bruises=f}                  0.1078287  0.9480519 0.1137371 1.6221512   876
[1472] {cap.color=e,                                                                                              
        bruises=f}                  => {spore.print.color=w}        0.1078287  1.0000000 0.1078287 3.4020101   876
[1473] {cap.color=e,                                                                                              
        spore.print.color=w}        => {gill.spacing=c}             0.1137371  1.0000000 0.1137371 1.1926013   924
[1474] {cap.color=e,                                                                                              
        gill.spacing=c}             => {spore.print.color=w}        0.1137371  0.6160000 0.1846381 2.0956382   924
[1475] {cap.color=e,                                                                                              
        spore.print.color=w}        => {ring.number=o}              0.1063516  0.9350649 0.1137371 1.0144855   864
[1476] {cap.color=e,                                                                                              
        ring.number=o}              => {spore.print.color=w}        0.1063516  0.6000000 0.1772526 2.0412060   864
[1477] {cap.color=e,                                                                                              
        spore.print.color=w}        => {gill.attachment=f}          0.1129985  0.9935065 0.1137371 1.0198694   918
[1478] {cap.color=e,                                                                                              
        gill.attachment=f}          => {spore.print.color=w}        0.1129985  0.6144578 0.1838996 2.0903917   918
[1479] {cap.color=e,                                                                                              
        spore.print.color=w}        => {veil.color=w}               0.1137371  1.0000000 0.1137371 1.0252398   924
[1480] {cap.color=e,                                                                                              
        veil.color=w}               => {spore.print.color=w}        0.1137371  0.6160000 0.1846381 2.0956382   924
[1481] {cap.color=e,                                                                                              
        stalk.root=?}               => {gill.size=n}                0.1063516  0.9473684 0.1122600 3.0638619   864
[1482] {cap.color=e,                                                                                              
        gill.size=n}                => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[1483] {cap.color=e,                                                                                              
        stalk.root=?}               => {ring.type=e}                0.1122600  1.0000000 0.1122600 2.9265130   912
[1484] {cap.color=e,                                                                                              
        ring.type=e}                => {stalk.root=?}               0.1122600  1.0000000 0.1122600 3.2758065   912
[1485] {cap.color=e,                                                                                              
        stalk.root=?}               => {class=p}                    0.1063516  0.9473684 0.1122600 1.9653782   864
[1486] {class=p,                                                                                                  
        cap.color=e}                => {stalk.root=?}               0.1063516  0.9863014 0.1078287 3.2309324   864
[1487] {cap.color=e,                                                                                              
        stalk.root=?}               => {population=v}               0.1063516  0.9473684 0.1122600 1.9050547   864
[1488] {cap.color=e,                                                                                              
        population=v}               => {stalk.root=?}               0.1063516  0.7500000 0.1418021 2.4568548   864
[1489] {cap.color=e,                                                                                              
        stalk.root=?}               => {stalk.shape=t}              0.1063516  0.9473684 0.1122600 1.6702303   864
[1490] {cap.color=e,                                                                                              
        stalk.shape=t}              => {stalk.root=?}               0.1063516  0.6000000 0.1772526 1.9654839   864
[1491] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {cap.color=e}                0.1063516  0.5000000 0.2127031 2.7080000   864
[1492] {cap.color=e,                                                                                              
        stalk.root=?}               => {bruises=f}                  0.1063516  0.9473684 0.1122600 1.6209817   864
[1493] {cap.color=e,                                                                                              
        bruises=f}                  => {stalk.root=?}               0.1063516  0.9863014 0.1078287 3.2309324   864
[1494] {cap.color=e,                                                                                              
        stalk.root=?}               => {gill.spacing=c}             0.1122600  1.0000000 0.1122600 1.1926013   912
[1495] {cap.color=e,                                                                                              
        gill.spacing=c}             => {stalk.root=?}               0.1122600  0.6080000 0.1846381 1.9916903   912
[1496] {cap.color=e,                                                                                              
        stalk.root=?}               => {ring.number=o}              0.1063516  0.9473684 0.1122600 1.0278340   864
[1497] {cap.color=e,                                                                                              
        ring.number=o}              => {stalk.root=?}               0.1063516  0.6000000 0.1772526 1.9654839   864
[1498] {cap.color=e,                                                                                              
        stalk.root=?}               => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[1499] {cap.color=e,                                                                                              
        gill.attachment=f}          => {stalk.root=?}               0.1122600  0.6104418 0.1838996 1.9996891   912
[1500] {cap.color=e,                                                                                              
        stalk.root=?}               => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[1501] {cap.color=e,                                                                                              
        veil.color=w}               => {stalk.root=?}               0.1122600  0.6080000 0.1846381 1.9916903   912
[1502] {cap.color=e,                                                                                              
        gill.size=n}                => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[1503] {cap.color=e,                                                                                              
        ring.type=e}                => {gill.size=n}                0.1063516  0.9473684 0.1122600 3.0638619   864
[1504] {cap.color=e,                                                                                              
        gill.size=n}                => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[1505] {class=p,                                                                                                  
        cap.color=e}                => {gill.size=n}                0.1063516  0.9863014 0.1078287 3.1897740   864
[1506] {cap.color=e,                                                                                              
        gill.size=n}                => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[1507] {cap.color=e,                                                                                              
        population=v}               => {gill.size=n}                0.1063516  0.7500000 0.1418021 2.4255573   864
[1508] {cap.color=e,                                                                                              
        gill.size=n}                => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[1509] {cap.color=e,                                                                                              
        stalk.shape=t}              => {gill.size=n}                0.1063516  0.6000000 0.1772526 1.9404459   864
[1510] {cap.color=e,                                                                                              
        gill.size=n}                => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[1511] {cap.color=e,                                                                                              
        bruises=f}                  => {gill.size=n}                0.1063516  0.9863014 0.1078287 3.1897740   864
[1512] {cap.color=e,                                                                                              
        gill.size=n}                => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[1513] {cap.color=e,                                                                                              
        gill.spacing=c}             => {gill.size=n}                0.1063516  0.5760000 0.1846381 1.8628280   864
[1514] {cap.color=e,                                                                                              
        gill.size=n}                => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[1515] {cap.color=e,                                                                                              
        ring.number=o}              => {gill.size=n}                0.1063516  0.6000000 0.1772526 1.9404459   864
[1516] {cap.color=e,                                                                                              
        gill.size=n}                => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[1517] {cap.color=e,                                                                                              
        gill.attachment=f}          => {gill.size=n}                0.1063516  0.5783133 0.1838996 1.8703093   864
[1518] {cap.color=e,                                                                                              
        gill.size=n}                => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[1519] {cap.color=e,                                                                                              
        veil.color=w}               => {gill.size=n}                0.1063516  0.5760000 0.1846381 1.8628280   864
[1520] {cap.color=e,                                                                                              
        ring.type=e}                => {class=p}                    0.1063516  0.9473684 0.1122600 1.9653782   864
[1521] {class=p,                                                                                                  
        cap.color=e}                => {ring.type=e}                0.1063516  0.9863014 0.1078287 2.8864237   864
[1522] {cap.color=e,                                                                                              
        ring.type=e}                => {population=v}               0.1063516  0.9473684 0.1122600 1.9050547   864
[1523] {cap.color=e,                                                                                              
        population=v}               => {ring.type=e}                0.1063516  0.7500000 0.1418021 2.1948847   864
[1524] {cap.color=e,                                                                                              
        ring.type=e}                => {stalk.shape=t}              0.1063516  0.9473684 0.1122600 1.6702303   864
[1525] {cap.color=e,                                                                                              
        stalk.shape=t}              => {ring.type=e}                0.1063516  0.6000000 0.1772526 1.7559078   864
[1526] {cap.color=e,                                                                                              
        ring.type=e}                => {bruises=f}                  0.1063516  0.9473684 0.1122600 1.6209817   864
[1527] {cap.color=e,                                                                                              
        bruises=f}                  => {ring.type=e}                0.1063516  0.9863014 0.1078287 2.8864237   864
[1528] {cap.color=e,                                                                                              
        ring.type=e}                => {gill.spacing=c}             0.1122600  1.0000000 0.1122600 1.1926013   912
[1529] {cap.color=e,                                                                                              
        gill.spacing=c}             => {ring.type=e}                0.1122600  0.6080000 0.1846381 1.7793199   912
[1530] {cap.color=e,                                                                                              
        ring.type=e}                => {ring.number=o}              0.1063516  0.9473684 0.1122600 1.0278340   864
[1531] {cap.color=e,                                                                                              
        ring.number=o}              => {ring.type=e}                0.1063516  0.6000000 0.1772526 1.7559078   864
[1532] {cap.color=e,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[1533] {cap.color=e,                                                                                              
        gill.attachment=f}          => {ring.type=e}                0.1122600  0.6104418 0.1838996 1.7864657   912
[1534] {cap.color=e,                                                                                              
        ring.type=e}                => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[1535] {cap.color=e,                                                                                              
        veil.color=w}               => {ring.type=e}                0.1122600  0.6080000 0.1846381 1.7793199   912
[1536] {cap.color=e,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.9863014 0.1078287 1.7388699   864
[1537] {cap.color=e,                                                                                              
        stalk.shape=t}              => {habitat=d}                  0.1063516  0.6000000 0.1772526 1.5484117   864
[1538] {cap.color=e,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.1078287  1.0000000 0.1078287 1.1926013   876
[1539] {cap.color=e,                                                                                              
        gill.spacing=c}             => {habitat=d}                  0.1078287  0.5840000 0.1846381 1.5071207   876
[1540] {cap.color=e,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1063516  0.9863014 0.1078287 1.0700738   864
[1541] {cap.color=e,                                                                                              
        ring.number=o}              => {habitat=d}                  0.1063516  0.6000000 0.1772526 1.5484117   864
[1542] {cap.color=e,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1070901  0.9931507 0.1078287 1.0195042   870
[1543] {cap.color=e,                                                                                              
        gill.attachment=f}          => {habitat=d}                  0.1070901  0.5823293 0.1838996 1.5028092   870
[1544] {cap.color=e,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1078287  1.0000000 0.1078287 1.0252398   876
[1545] {cap.color=e,                                                                                              
        veil.color=w}               => {habitat=d}                  0.1078287  0.5840000 0.1846381 1.5071207   876
[1546] {class=p,                                                                                                  
        cap.color=e}                => {population=v}               0.1063516  0.9863014 0.1078287 1.9833446   864
[1547] {cap.color=e,                                                                                              
        population=v}               => {class=p}                    0.1063516  0.7500000 0.1418021 1.5559244   864
[1548] {class=p,                                                                                                  
        cap.color=e}                => {stalk.shape=t}              0.1063516  0.9863014 0.1078287 1.7388699   864
[1549] {cap.color=e,                                                                                              
        stalk.shape=t}              => {class=p}                    0.1063516  0.6000000 0.1772526 1.2447395   864
[1550] {class=p,                                                                                                  
        cap.color=e}                => {bruises=f}                  0.1078287  1.0000000 0.1078287 1.7110362   876
[1551] {cap.color=e,                                                                                              
        bruises=f}                  => {class=p}                    0.1078287  1.0000000 0.1078287 2.0745659   876
[1552] {class=p,                                                                                                  
        cap.color=e}                => {gill.spacing=c}             0.1078287  1.0000000 0.1078287 1.1926013   876
[1553] {cap.color=e,                                                                                              
        gill.spacing=c}             => {class=p}                    0.1078287  0.5840000 0.1846381 1.2115465   876
[1554] {class=p,                                                                                                  
        cap.color=e}                => {ring.number=o}              0.1063516  0.9863014 0.1078287 1.0700738   864
[1555] {cap.color=e,                                                                                              
        ring.number=o}              => {class=p}                    0.1063516  0.6000000 0.1772526 1.2447395   864
[1556] {class=p,                                                                                                  
        cap.color=e}                => {gill.attachment=f}          0.1070901  0.9931507 0.1078287 1.0195042   870
[1557] {cap.color=e,                                                                                              
        gill.attachment=f}          => {class=p}                    0.1070901  0.5823293 0.1838996 1.2080805   870
[1558] {class=p,                                                                                                  
        cap.color=e}                => {veil.color=w}               0.1078287  1.0000000 0.1078287 1.0252398   876
[1559] {cap.color=e,                                                                                              
        veil.color=w}               => {class=p}                    0.1078287  0.5840000 0.1846381 1.2115465   876
[1560] {cap.color=e,                                                                                              
        population=v}               => {stalk.shape=t}              0.1418021  1.0000000 0.1418021 1.7630208  1152
[1561] {cap.color=e,                                                                                              
        stalk.shape=t}              => {population=v}               0.1418021  0.8000000 0.1772526 1.6087129  1152
[1562] {cap.color=e,                                                                                              
        population=v}               => {bruises=f}                  0.1063516  0.7500000 0.1418021 1.2832772   864
[1563] {cap.color=e,                                                                                              
        bruises=f}                  => {population=v}               0.1063516  0.9863014 0.1078287 1.9833446   864
[1564] {cap.color=e,                                                                                              
        population=v}               => {gill.spacing=c}             0.1418021  1.0000000 0.1418021 1.1926013  1152
[1565] {cap.color=e,                                                                                              
        gill.spacing=c}             => {population=v}               0.1418021  0.7680000 0.1846381 1.5443644  1152
[1566] {cap.color=e,                                                                                              
        population=v}               => {ring.number=o}              0.1418021  1.0000000 0.1418021 1.0849359  1152
[1567] {cap.color=e,                                                                                              
        ring.number=o}              => {population=v}               0.1418021  0.8000000 0.1772526 1.6087129  1152
[1568] {cap.color=e,                                                                                              
        population=v}               => {gill.attachment=f}          0.1418021  1.0000000 0.1418021 1.0265353  1152
[1569] {cap.color=e,                                                                                              
        gill.attachment=f}          => {population=v}               0.1418021  0.7710843 0.1838996 1.5505666  1152
[1570] {cap.color=e,                                                                                              
        population=v}               => {veil.color=w}               0.1418021  1.0000000 0.1418021 1.0252398  1152
[1571] {cap.color=e,                                                                                              
        veil.color=w}               => {population=v}               0.1418021  0.7680000 0.1846381 1.5443644  1152
[1572] {cap.color=e,                                                                                              
        stalk.shape=t}              => {bruises=f}                  0.1063516  0.6000000 0.1772526 1.0266217   864
[1573] {cap.color=e,                                                                                              
        bruises=f}                  => {stalk.shape=t}              0.1063516  0.9863014 0.1078287 1.7388699   864
[1574] {cap.color=e,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1240768  0.7000000 0.1772526 1.1521070  1008
[1575] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1240768  0.9545455 0.1299852 1.6828835  1008
[1576] {cap.color=e,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1240768  0.7000000 0.1772526 1.0986862  1008
[1577] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1240768  0.9545455 0.1299852 1.6828835  1008
[1578] {cap.color=e,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.1772526  1.0000000 0.1772526 1.1926013  1440
[1579] {cap.color=e,                                                                                              
        gill.spacing=c}             => {stalk.shape=t}              0.1772526  0.9600000 0.1846381 1.6925000  1440
[1580] {cap.color=e,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.1772526  1.0000000 0.1772526 1.0849359  1440
[1581] {cap.color=e,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.1772526  1.0000000 0.1772526 1.7630208  1440
[1582] {cap.color=e,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[1583] {cap.color=e,                                                                                              
        gill.attachment=f}          => {stalk.shape=t}              0.1772526  0.9638554 0.1838996 1.6992972  1440
[1584] {cap.color=e,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[1585] {cap.color=e,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.1772526  0.9600000 0.1846381 1.6925000  1440
[1586] {cap.color=e,                                                                                              
        bruises=f}                  => {gill.spacing=c}             0.1078287  1.0000000 0.1078287 1.1926013   876
[1587] {cap.color=e,                                                                                              
        gill.spacing=c}             => {bruises=f}                  0.1078287  0.5840000 0.1846381 0.9992452   876
[1588] {cap.color=e,                                                                                              
        bruises=f}                  => {ring.number=o}              0.1063516  0.9863014 0.1078287 1.0700738   864
[1589] {cap.color=e,                                                                                              
        ring.number=o}              => {bruises=f}                  0.1063516  0.6000000 0.1772526 1.0266217   864
[1590] {cap.color=e,                                                                                              
        bruises=f}                  => {gill.attachment=f}          0.1070901  0.9931507 0.1078287 1.0195042   870
[1591] {cap.color=e,                                                                                              
        gill.attachment=f}          => {bruises=f}                  0.1070901  0.5823293 0.1838996 0.9963866   870
[1592] {cap.color=e,                                                                                              
        bruises=f}                  => {veil.color=w}               0.1078287  1.0000000 0.1078287 1.0252398   876
[1593] {cap.color=e,                                                                                              
        veil.color=w}               => {bruises=f}                  0.1078287  0.5840000 0.1846381 0.9992452   876
[1594] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1033973  0.7954545 0.1299852 1.2485071   840
[1595] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1033973  0.7954545 0.1299852 1.3092125   840
[1596] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1299852  1.0000000 0.1299852 1.1926013  1056
[1597] {cap.color=e,                                                                                              
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.1299852  0.7040000 0.1846381 1.1586904  1056
[1598] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.1240768  0.9545455 0.1299852 1.0356206  1008
[1599] {cap.color=e,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1240768  0.7000000 0.1772526 1.1521070  1008
[1600] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1299852  1.0000000 0.1299852 1.0265353  1056
[1601] {cap.color=e,                                                                                              
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.1299852  0.7068273 0.1838996 1.1633438  1056
[1602] {cap.color=e,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.1299852  1.0000000 0.1299852 1.0252398  1056
[1603] {cap.color=e,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1299852  0.7040000 0.1846381 1.1586904  1056
[1604] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1299852  1.0000000 0.1299852 1.1926013  1056
[1605] {cap.color=e,                                                                                              
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.1299852  0.7040000 0.1846381 1.1049645  1056
[1606] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.1240768  0.9545455 0.1299852 1.0356206  1008
[1607] {cap.color=e,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1240768  0.7000000 0.1772526 1.0986862  1008
[1608] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1299852  1.0000000 0.1299852 1.0265353  1056
[1609] {cap.color=e,                                                                                              
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.1299852  0.7068273 0.1838996 1.1094021  1056
[1610] {cap.color=e,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.1299852  1.0000000 0.1299852 1.0252398  1056
[1611] {cap.color=e,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1299852  0.7040000 0.1846381 1.1049645  1056
[1612] {cap.color=e,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.1772526  0.9600000 0.1846381 1.0415385  1440
[1613] {cap.color=e,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.1772526  1.0000000 0.1772526 1.1926013  1440
[1614] {cap.color=e,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.1838996  0.9960000 0.1846381 1.0224291  1494
[1615] {cap.color=e,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.1838996  1.0000000 0.1838996 1.1926013  1494
[1616] {cap.color=e,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.1846381  1.0000000 0.1846381 1.0252398  1500
[1617] {cap.color=e,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.1846381  1.0000000 0.1846381 1.1926013  1500
[1618] {cap.color=e,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[1619] {cap.color=e,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.1772526  0.9638554 0.1838996 1.0457213  1440
[1620] {cap.color=e,                                                                                              
        ring.number=o}              => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[1621] {cap.color=e,                                                                                              
        veil.color=w}               => {ring.number=o}              0.1772526  0.9600000 0.1846381 1.0415385  1440
[1622] {cap.color=e,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.1838996  1.0000000 0.1838996 1.0252398  1494
[1623] {cap.color=e,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.1838996  0.9960000 0.1846381 1.0224291  1494
[1624] {odor=f,                                                                                                   
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[1625] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1626] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.8181818 0.1949778 4.0728610  1296
[1627] {odor=f,                                                                                                   
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[1628] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[1629] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.8181818 0.1949778 4.0728610  1296
[1630] {odor=f,                                                                                                   
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[1631] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {odor=f}                     0.1595273  0.9642857 0.1654357 3.6267857  1296
[1632] {odor=f,                                                                                                   
        stalk.shape=e}              => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1633] {odor=f,                                                                                                   
        spore.print.color=h}        => {stalk.root=b}               0.1949778  1.0000000 0.1949778 2.1514831  1584
[1634] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {odor=f}                     0.1949778  1.0000000 0.1949778 3.7611111  1584
[1635] {odor=f,                                                                                                   
        stalk.root=b}               => {spore.print.color=h}        0.1949778  1.0000000 0.1949778 4.9779412  1584
[1636] {odor=f,                                                                                                   
        spore.print.color=h}        => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[1637] {class=p,                                                                                                  
        spore.print.color=h}        => {odor=f}                     0.1949778  1.0000000 0.1949778 3.7611111  1584
[1638] {class=p,                                                                                                  
        odor=f}                     => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[1639] {odor=f,                                                                                                   
        spore.print.color=h}        => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[1640] {bruises=f,                                                                                                
        spore.print.color=h}        => {odor=f}                     0.1595273  0.9642857 0.1654357 3.6267857  1296
[1641] {bruises=f,                                                                                                
        odor=f}                     => {spore.print.color=h}        0.1595273  0.6923077 0.2304284 3.4462670  1296
[1642] {odor=f,                                                                                                   
        spore.print.color=h}        => {gill.size=b}                0.1949778  1.0000000 0.1949778 1.4476123  1584
[1643] {gill.size=b,                                                                                              
        spore.print.color=h}        => {odor=f}                     0.1949778  1.0000000 0.1949778 3.7611111  1584
[1644] {odor=f,                                                                                                   
        gill.size=b}                => {spore.print.color=h}        0.1949778  1.0000000 0.1949778 4.9779412  1584
[1645] {odor=f,                                                                                                   
        spore.print.color=h}        => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[1646] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {odor=f}                     0.1949778  0.9705882 0.2008863 3.6504902  1584
[1647] {odor=f,                                                                                                   
        gill.spacing=c}             => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[1648] {odor=f,                                                                                                   
        spore.print.color=h}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[1649] {ring.number=o,                                                                                            
        spore.print.color=h}        => {odor=f}                     0.1949778  0.9705882 0.2008863 3.6504902  1584
[1650] {odor=f,                                                                                                   
        ring.number=o}              => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[1651] {odor=f,                                                                                                   
        spore.print.color=h}        => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[1652] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {odor=f}                     0.1949778  0.9705882 0.2008863 3.6504902  1584
[1653] {odor=f,                                                                                                   
        gill.attachment=f}          => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[1654] {odor=f,                                                                                                   
        spore.print.color=h}        => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[1655] {veil.color=w,                                                                                             
        spore.print.color=h}        => {odor=f}                     0.1949778  0.9705882 0.2008863 3.6504902  1584
[1656] {odor=f,                                                                                                   
        veil.color=w}               => {spore.print.color=h}        0.1949778  0.7333333 0.2658789 3.6504902  1584
[1657] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[1658] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[1659] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.7200000 0.2215657 3.5841176  1296
[1660] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1661] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.9642857 0.1654357 3.4001116  1296
[1662] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.9000000 0.1772526 4.4801471  1296
[1663] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1664] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[1665] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1666] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1667] {class=p,                                                                                                  
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[1668] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.6000000 0.2658789 2.9867647  1296
[1669] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1670] {bruises=f,                                                                                                
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.9642857 0.1654357 3.4001116  1296
[1671] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.5625000 0.2836041 2.8000919  1296
[1672] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1673] {gill.size=b,                                                                                              
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[1674] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.9000000 0.1772526 4.4801471  1296
[1675] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1676] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.7941176 0.2008863 2.8000919  1296
[1677] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.6000000 0.2658789 2.9867647  1296
[1678] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1679] {ring.number=o,                                                                                            
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.7941176 0.2008863 2.8000919  1296
[1680] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {spore.print.color=h}        0.1595273  0.6000000 0.2658789 2.9867647  1296
[1681] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1682] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.7941176 0.2008863 2.8000919  1296
[1683] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {spore.print.color=h}        0.1595273  0.5625000 0.2836041 2.8000919  1296
[1684] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=h}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1685] {veil.color=w,                                                                                             
        spore.print.color=h}        => {stalk.surface.below.ring=k} 0.1595273  0.7941176 0.2008863 2.8000919  1296
[1686] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {spore.print.color=h}        0.1595273  0.5625000 0.2836041 2.8000919  1296
[1687] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[1688] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.9642857 0.1654357 3.3026379  1296
[1689] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.8594164 0.1856228 4.2781245  1296
[1690] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[1691] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[1692] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  1.0000000 0.1595273 4.9779412  1296
[1693] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[1694] {class=p,                                                                                                  
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[1695] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.5816876 0.2742491 2.8956067  1296
[1696] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[1697] {bruises=f,                                                                                                
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.9642857 0.1654357 3.3026379  1296
[1698] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.5463744 0.2919744 2.7198195  1296
[1699] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[1700] {gill.size=b,                                                                                              
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[1701] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.8780488 0.1816839 4.3708752  1296
[1702] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[1703] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.7941176 0.2008863 2.7198195  1296
[1704] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.5816876 0.2742491 2.8956067  1296
[1705] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[1706] {ring.number=o,                                                                                            
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.7941176 0.2008863 2.7198195  1296
[1707] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {spore.print.color=h}        0.1595273  0.5912409 0.2698178 2.9431623  1296
[1708] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[1709] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.7941176 0.2008863 2.7198195  1296
[1710] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {spore.print.color=h}        0.1595273  0.5505523 0.2897587 2.7406167  1296
[1711] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=h}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[1712] {veil.color=w,                                                                                             
        spore.print.color=h}        => {stalk.surface.above.ring=k} 0.1595273  0.7941176 0.2008863 2.7198195  1296
[1713] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {spore.print.color=h}        0.1595273  0.5463744 0.2919744 2.7198195  1296
[1714] {cap.shape=f,                                                                                              
        spore.print.color=h}        => {gill.spacing=c}             0.1004431  1.0000000 0.1004431 1.1926013   816
[1715] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {cap.shape=f}                0.1004431  0.5000000 0.2008863 1.2887056   816
[1716] {cap.shape=f,                                                                                              
        spore.print.color=h}        => {ring.number=o}              0.1004431  1.0000000 0.1004431 1.0849359   816
[1717] {ring.number=o,                                                                                            
        spore.print.color=h}        => {cap.shape=f}                0.1004431  0.5000000 0.2008863 1.2887056   816
[1718] {cap.shape=f,                                                                                              
        spore.print.color=h}        => {gill.attachment=f}          0.1004431  1.0000000 0.1004431 1.0265353   816
[1719] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {cap.shape=f}                0.1004431  0.5000000 0.2008863 1.2887056   816
[1720] {cap.shape=f,                                                                                              
        spore.print.color=h}        => {veil.color=w}               0.1004431  1.0000000 0.1004431 1.0252398   816
[1721] {veil.color=w,                                                                                             
        spore.print.color=h}        => {cap.shape=f}                0.1004431  0.5000000 0.2008863 1.2887056   816
[1722] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {stalk.root=b}               0.1595273  0.9642857 0.1654357 2.0746444  1296
[1723] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[1724] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {spore.print.color=h}        0.1595273  0.7788462 0.2048252 3.8770503  1296
[1725] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {class=p}                    0.1595273  0.9642857 0.1654357 2.0004742  1296
[1726] {class=p,                                                                                                  
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[1727] {class=p,                                                                                                  
        stalk.shape=e}              => {spore.print.color=h}        0.1595273  0.6821053 0.2338749 3.3954799  1296
[1728] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {bruises=f}                  0.1654357  1.0000000 0.1654357 1.7110362  1344
[1729] {bruises=f,                                                                                                
        spore.print.color=h}        => {stalk.shape=e}              0.1654357  1.0000000 0.1654357 2.3105802  1344
[1730] {bruises=f,                                                                                                
        stalk.shape=e}              => {spore.print.color=h}        0.1654357  0.5968028 0.2772033 2.9708494  1344
[1731] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {gill.size=b}                0.1595273  0.9642857 0.1654357 1.3959118  1296
[1732] {gill.size=b,                                                                                              
        spore.print.color=h}        => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[1733] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {gill.spacing=c}             0.1654357  1.0000000 0.1654357 1.1926013  1344
[1734] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {stalk.shape=e}              0.1654357  0.8235294 0.2008863 1.9028308  1344
[1735] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[1736] {ring.number=o,                                                                                            
        spore.print.color=h}        => {stalk.shape=e}              0.1654357  0.8235294 0.2008863 1.9028308  1344
[1737] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[1738] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {stalk.shape=e}              0.1654357  0.8235294 0.2008863 1.9028308  1344
[1739] {stalk.shape=e,                                                                                            
        spore.print.color=h}        => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[1740] {veil.color=w,                                                                                             
        spore.print.color=h}        => {stalk.shape=e}              0.1654357  0.8235294 0.2008863 1.9028308  1344
[1741] {cap.shape=x,                                                                                              
        spore.print.color=h}        => {gill.spacing=c}             0.1004431  1.0000000 0.1004431 1.1926013   816
[1742] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {cap.shape=x}                0.1004431  0.5000000 0.2008863 1.1110503   816
[1743] {cap.shape=x,                                                                                              
        spore.print.color=h}        => {ring.number=o}              0.1004431  1.0000000 0.1004431 1.0849359   816
[1744] {ring.number=o,                                                                                            
        spore.print.color=h}        => {cap.shape=x}                0.1004431  0.5000000 0.2008863 1.1110503   816
[1745] {cap.shape=x,                                                                                              
        spore.print.color=h}        => {gill.attachment=f}          0.1004431  1.0000000 0.1004431 1.0265353   816
[1746] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {cap.shape=x}                0.1004431  0.5000000 0.2008863 1.1110503   816
[1747] {cap.shape=x,                                                                                              
        spore.print.color=h}        => {veil.color=w}               0.1004431  1.0000000 0.1004431 1.0252398   816
[1748] {veil.color=w,                                                                                             
        spore.print.color=h}        => {cap.shape=x}                0.1004431  0.5000000 0.2008863 1.1110503   816
[1749] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[1750] {class=p,                                                                                                  
        spore.print.color=h}        => {stalk.root=b}               0.1949778  1.0000000 0.1949778 2.1514831  1584
[1751] {class=p,                                                                                                  
        stalk.root=b}               => {spore.print.color=h}        0.1949778  0.8534483 0.2284589 4.2484153  1584
[1752] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[1753] {bruises=f,                                                                                                
        spore.print.color=h}        => {stalk.root=b}               0.1595273  0.9642857 0.1654357 2.0746444  1296
[1754] {bruises=f,                                                                                                
        stalk.root=b}               => {spore.print.color=h}        0.1595273  0.8350515 0.1910389 4.1568375  1296
[1755] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {gill.size=b}                0.1949778  1.0000000 0.1949778 1.4476123  1584
[1756] {gill.size=b,                                                                                              
        spore.print.color=h}        => {stalk.root=b}               0.1949778  1.0000000 0.1949778 2.1514831  1584
[1757] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[1758] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {stalk.root=b}               0.1949778  0.9705882 0.2008863 2.0882041  1584
[1759] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[1760] {ring.number=o,                                                                                            
        spore.print.color=h}        => {stalk.root=b}               0.1949778  0.9705882 0.2008863 2.0882041  1584
[1761] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[1762] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {stalk.root=b}               0.1949778  0.9705882 0.2008863 2.0882041  1584
[1763] {stalk.root=b,                                                                                             
        spore.print.color=h}        => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[1764] {veil.color=w,                                                                                             
        spore.print.color=h}        => {stalk.root=b}               0.1949778  0.9705882 0.2008863 2.0882041  1584
[1765] {class=p,                                                                                                  
        spore.print.color=h}        => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[1766] {bruises=f,                                                                                                
        spore.print.color=h}        => {class=p}                    0.1595273  0.9642857 0.1654357 2.0004742  1296
[1767] {class=p,                                                                                                  
        spore.print.color=h}        => {gill.size=b}                0.1949778  1.0000000 0.1949778 1.4476123  1584
[1768] {gill.size=b,                                                                                              
        spore.print.color=h}        => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[1769] {class=p,                                                                                                  
        gill.size=b}                => {spore.print.color=h}        0.1949778  0.9361702 0.2082718 4.6602003  1584
[1770] {class=p,                                                                                                  
        spore.print.color=h}        => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[1771] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {class=p}                    0.1949778  0.9705882 0.2008863 2.0135492  1584
[1772] {class=p,                                                                                                  
        spore.print.color=h}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[1773] {ring.number=o,                                                                                            
        spore.print.color=h}        => {class=p}                    0.1949778  0.9705882 0.2008863 2.0135492  1584
[1774] {class=p,                                                                                                  
        spore.print.color=h}        => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[1775] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {class=p}                    0.1949778  0.9705882 0.2008863 2.0135492  1584
[1776] {class=p,                                                                                                  
        spore.print.color=h}        => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[1777] {veil.color=w,                                                                                             
        spore.print.color=h}        => {class=p}                    0.1949778  0.9705882 0.2008863 2.0135492  1584
[1778] {spore.print.color=h,                                                                                      
        population=v}               => {gill.spacing=c}             0.1004431  1.0000000 0.1004431 1.1926013   816
[1779] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {population=v}               0.1004431  0.5000000 0.2008863 1.0054455   816
[1780] {spore.print.color=h,                                                                                      
        population=v}               => {ring.number=o}              0.1004431  1.0000000 0.1004431 1.0849359   816
[1781] {ring.number=o,                                                                                            
        spore.print.color=h}        => {population=v}               0.1004431  0.5000000 0.2008863 1.0054455   816
[1782] {spore.print.color=h,                                                                                      
        population=v}               => {gill.attachment=f}          0.1004431  1.0000000 0.1004431 1.0265353   816
[1783] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {population=v}               0.1004431  0.5000000 0.2008863 1.0054455   816
[1784] {spore.print.color=h,                                                                                      
        population=v}               => {veil.color=w}               0.1004431  1.0000000 0.1004431 1.0252398   816
[1785] {veil.color=w,                                                                                             
        spore.print.color=h}        => {population=v}               0.1004431  0.5000000 0.2008863 1.0054455   816
[1786] {bruises=f,                                                                                                
        spore.print.color=h}        => {gill.size=b}                0.1595273  0.9642857 0.1654357 1.3959118  1296
[1787] {gill.size=b,                                                                                              
        spore.print.color=h}        => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[1788] {bruises=f,                                                                                                
        spore.print.color=h}        => {gill.spacing=c}             0.1654357  1.0000000 0.1654357 1.1926013  1344
[1789] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {bruises=f}                  0.1654357  0.8235294 0.2008863 1.4090887  1344
[1790] {bruises=f,                                                                                                
        spore.print.color=h}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[1791] {ring.number=o,                                                                                            
        spore.print.color=h}        => {bruises=f}                  0.1654357  0.8235294 0.2008863 1.4090887  1344
[1792] {bruises=f,                                                                                                
        spore.print.color=h}        => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[1793] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {bruises=f}                  0.1654357  0.8235294 0.2008863 1.4090887  1344
[1794] {bruises=f,                                                                                                
        spore.print.color=h}        => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[1795] {veil.color=w,                                                                                             
        spore.print.color=h}        => {bruises=f}                  0.1654357  0.8235294 0.2008863 1.4090887  1344
[1796] {gill.size=b,                                                                                              
        spore.print.color=h}        => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[1797] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {gill.size=b}                0.1949778  0.9705882 0.2008863 1.4050354  1584
[1798] {gill.size=b,                                                                                              
        spore.print.color=h}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[1799] {ring.number=o,                                                                                            
        spore.print.color=h}        => {gill.size=b}                0.1949778  0.9705882 0.2008863 1.4050354  1584
[1800] {gill.size=b,                                                                                              
        spore.print.color=h}        => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[1801] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {gill.size=b}                0.1949778  0.9705882 0.2008863 1.4050354  1584
[1802] {gill.size=b,                                                                                              
        spore.print.color=h}        => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[1803] {veil.color=w,                                                                                             
        spore.print.color=h}        => {gill.size=b}                0.1949778  0.9705882 0.2008863 1.4050354  1584
[1804] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {ring.number=o}              0.2008863  1.0000000 0.2008863 1.0849359  1632
[1805] {ring.number=o,                                                                                            
        spore.print.color=h}        => {gill.spacing=c}             0.2008863  1.0000000 0.2008863 1.1926013  1632
[1806] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {gill.attachment=f}          0.2008863  1.0000000 0.2008863 1.0265353  1632
[1807] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {gill.spacing=c}             0.2008863  1.0000000 0.2008863 1.1926013  1632
[1808] {gill.spacing=c,                                                                                           
        spore.print.color=h}        => {veil.color=w}               0.2008863  1.0000000 0.2008863 1.0252398  1632
[1809] {veil.color=w,                                                                                             
        spore.print.color=h}        => {gill.spacing=c}             0.2008863  1.0000000 0.2008863 1.1926013  1632
[1810] {ring.number=o,                                                                                            
        spore.print.color=h}        => {gill.attachment=f}          0.2008863  1.0000000 0.2008863 1.0265353  1632
[1811] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {ring.number=o}              0.2008863  1.0000000 0.2008863 1.0849359  1632
[1812] {ring.number=o,                                                                                            
        spore.print.color=h}        => {veil.color=w}               0.2008863  1.0000000 0.2008863 1.0252398  1632
[1813] {veil.color=w,                                                                                             
        spore.print.color=h}        => {ring.number=o}              0.2008863  1.0000000 0.2008863 1.0849359  1632
[1814] {gill.attachment=f,                                                                                        
        spore.print.color=h}        => {veil.color=w}               0.2008863  1.0000000 0.2008863 1.0252398  1632
[1815] {veil.color=w,                                                                                             
        spore.print.color=h}        => {gill.attachment=f}          0.2008863  1.0000000 0.2008863 1.0265353  1632
[1816] {population=y,                                                                                             
        habitat=d}                  => {bruises=t}                  0.1063516  0.7769784 0.1368784 1.8697194   864
[1817] {bruises=t,                                                                                                
        population=y}               => {habitat=d}                  0.1063516  0.8852459 0.1201379 2.2845418   864
[1818] {population=y,                                                                                             
        habitat=d}                  => {odor=n}                     0.1102905  0.8057554 0.1368784 1.8554299   896
[1819] {odor=n,                                                                                                   
        population=y}               => {habitat=d}                  0.1102905  0.9256198 0.1191531 2.3887343   896
[1820] {population=y,                                                                                             
        habitat=d}                  => {stalk.root=b}               0.1339242  0.9784173 0.1368784 2.1050482  1088
[1821] {stalk.root=b,                                                                                             
        population=y}               => {habitat=d}                  0.1339242  0.7046632 0.1900542 1.8185146  1088
[1822] {population=y,                                                                                             
        habitat=d}                  => {ring.type=p}                0.1073363  0.7841727 0.1368784 1.6054987   872
[1823] {ring.type=p,                                                                                              
        population=y}               => {habitat=d}                  0.1073363  0.8384615 0.1280158 2.1638061   872
[1824] {population=y,                                                                                             
        habitat=d}                  => {class=e}                    0.1102905  0.8057554 0.1368784 1.5555981   896
[1825] {class=e,                                                                                                  
        population=y}               => {habitat=d}                  0.1102905  0.8421053 0.1309700 2.1732094   896
[1826] {population=y,                                                                                             
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.7769784 0.1368784 1.3698291   864
[1827] {stalk.shape=t,                                                                                            
        population=y}               => {habitat=d}                  0.1063516  1.0000000 0.1063516 2.5806861   864
[1828] {population=y,                                                                                             
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1063516  0.7769784 0.1368784 1.2788032   864
[1829] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {habitat=d}                  0.1063516  0.9310345 0.1142294 2.4027078   864
[1830] {population=y,                                                                                             
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1093058  0.7985612 0.1368784 1.2533831   888
[1831] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {habitat=d}                  0.1093058  0.8473282 0.1290005 2.1866883   888
[1832] {population=y,                                                                                             
        habitat=d}                  => {gill.size=b}                0.1339242  0.9784173 0.1368784 1.4163688  1088
[1833] {gill.size=b,                                                                                              
        population=y}               => {habitat=d}                  0.1339242  0.6634146 0.2018710 1.7120650  1088
[1834] {population=y,                                                                                             
        habitat=d}                  => {gill.spacing=c}             0.1368784  1.0000000 0.1368784 1.1926013  1112
[1835] {gill.spacing=c,                                                                                           
        population=y}               => {habitat=d}                  0.1368784  0.6495327 0.2107336 1.6762401  1112
[1836] {population=y,                                                                                             
        habitat=d}                  => {ring.number=o}              0.1358936  0.9928058 0.1368784 1.0771306  1104
[1837] {ring.number=o,                                                                                            
        population=y}               => {habitat=d}                  0.1358936  0.6571429 0.2067947 1.6958795  1104
[1838] {population=y,                                                                                             
        habitat=d}                  => {gill.attachment=f}          0.1368784  1.0000000 0.1368784 1.0265353  1112
[1839] {gill.attachment=f,                                                                                        
        population=y}               => {habitat=d}                  0.1368784  0.6495327 0.2107336 1.6762401  1112
[1840] {population=y,                                                                                             
        habitat=d}                  => {veil.color=w}               0.1368784  1.0000000 0.1368784 1.0252398  1112
[1841] {veil.color=w,                                                                                             
        population=y}               => {habitat=d}                  0.1368784  0.6495327 0.2107336 1.6762401  1112
[1842] {cap.shape=f,                                                                                              
        population=y}               => {gill.size=b}                0.1004431  0.9668246 0.1038897 1.3995872   816
[1843] {cap.shape=f,                                                                                              
        population=y}               => {gill.spacing=c}             0.1038897  1.0000000 0.1038897 1.1926013   844
[1844] {cap.shape=f,                                                                                              
        population=y}               => {ring.number=o}              0.1024126  0.9857820 0.1038897 1.0695103   832
[1845] {cap.shape=f,                                                                                              
        population=y}               => {gill.attachment=f}          0.1038897  1.0000000 0.1038897 1.0265353   844
[1846] {cap.shape=f,                                                                                              
        population=y}               => {veil.color=w}               0.1038897  1.0000000 0.1038897 1.0252398   844
[1847] {cap.surface=y,                                                                                            
        population=y}               => {gill.size=b}                0.1068439  0.9730942 0.1097981 1.4086631   868
[1848] {gill.size=b,                                                                                              
        population=y}               => {cap.surface=y}              0.1068439  0.5292683 0.2018710 1.3254549   868
[1849] {cap.surface=y,                                                                                            
        population=y}               => {gill.spacing=c}             0.1097981  1.0000000 0.1097981 1.1926013   892
[1850] {gill.spacing=c,                                                                                           
        population=y}               => {cap.surface=y}              0.1097981  0.5210280 0.2107336 1.3048187   892
[1851] {cap.surface=y,                                                                                            
        population=y}               => {ring.number=o}              0.1078287  0.9820628 0.1097981 1.0654752   876
[1852] {ring.number=o,                                                                                            
        population=y}               => {cap.surface=y}              0.1078287  0.5214286 0.2067947 1.3058217   876
[1853] {cap.surface=y,                                                                                            
        population=y}               => {gill.attachment=f}          0.1097981  1.0000000 0.1097981 1.0265353   892
[1854] {gill.attachment=f,                                                                                        
        population=y}               => {cap.surface=y}              0.1097981  0.5210280 0.2107336 1.3048187   892
[1855] {cap.surface=y,                                                                                            
        population=y}               => {veil.color=w}               0.1097981  1.0000000 0.1097981 1.0252398   892
[1856] {veil.color=w,                                                                                             
        population=y}               => {cap.surface=y}              0.1097981  0.5210280 0.2107336 1.3048187   892
[1857] {bruises=t,                                                                                                
        population=y}               => {odor=n}                     0.1083210  0.9016393 0.1201379 2.0762239   880
[1858] {odor=n,                                                                                                   
        population=y}               => {bruises=t}                  0.1083210  0.9090909 0.1191531 2.1876346   880
[1859] {bruises=t,                                                                                                
        population=y}               => {stalk.root=b}               0.1083210  0.9016393 0.1201379 1.9398618   880
[1860] {stalk.root=b,                                                                                             
        population=y}               => {bruises=t}                  0.1083210  0.5699482 0.1900542 1.3715222   880
[1861] {bruises=t,                                                                                                
        population=y}               => {ring.type=p}                0.1201379  1.0000000 0.1201379 2.0473790   976
[1862] {ring.type=p,                                                                                              
        population=y}               => {bruises=t}                  0.1201379  0.9384615 0.1280158 2.2583121   976
[1863] {bruises=t,                                                                                                
        population=y}               => {class=e}                    0.1201379  1.0000000 0.1201379 1.9306084   976
[1864] {class=e,                                                                                                  
        population=y}               => {bruises=t}                  0.1201379  0.9172932 0.1309700 2.2073727   976
[1865] {bruises=t,                                                                                                
        population=y}               => {stalk.shape=t}              0.1063516  0.8852459 0.1201379 1.5607070   864
[1866] {stalk.shape=t,                                                                                            
        population=y}               => {bruises=t}                  0.1063516  1.0000000 0.1063516 2.4063981   864
[1867] {bruises=t,                                                                                                
        population=y}               => {stalk.surface.below.ring=s} 0.1083210  0.9016393 0.1201379 1.4839785   880
[1868] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {bruises=t}                  0.1083210  0.9482759 0.1142294 2.2819292   880
[1869] {bruises=t,                                                                                                
        population=y}               => {stalk.surface.above.ring=s} 0.1201379  1.0000000 0.1201379 1.5695518   976
[1870] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {bruises=t}                  0.1201379  0.9312977 0.1290005 2.2410730   976
[1871] {bruises=t,                                                                                                
        population=y}               => {gill.size=b}                0.1201379  1.0000000 0.1201379 1.4476123   976
[1872] {gill.size=b,                                                                                              
        population=y}               => {bruises=t}                  0.1201379  0.5951220 0.2018710 1.4321003   976
[1873] {bruises=t,                                                                                                
        population=y}               => {gill.spacing=c}             0.1201379  1.0000000 0.1201379 1.1926013   976
[1874] {gill.spacing=c,                                                                                           
        population=y}               => {bruises=t}                  0.1201379  0.5700935 0.2107336 1.3718718   976
[1875] {bruises=t,                                                                                                
        population=y}               => {ring.number=o}              0.1181684  0.9836066 0.1201379 1.0671501   960
[1876] {ring.number=o,                                                                                            
        population=y}               => {bruises=t}                  0.1181684  0.5714286 0.2067947 1.3750846   960
[1877] {bruises=t,                                                                                                
        population=y}               => {gill.attachment=f}          0.1201379  1.0000000 0.1201379 1.0265353   976
[1878] {gill.attachment=f,                                                                                        
        population=y}               => {bruises=t}                  0.1201379  0.5700935 0.2107336 1.3718718   976
[1879] {bruises=t,                                                                                                
        population=y}               => {veil.color=w}               0.1201379  1.0000000 0.1201379 1.0252398   976
[1880] {veil.color=w,                                                                                             
        population=y}               => {bruises=t}                  0.1201379  0.5700935 0.2107336 1.3718718   976
[1881] {stalk.shape=e,                                                                                            
        population=y}               => {gill.spacing=c}             0.1043821  1.0000000 0.1043821 1.1926013   848
[1882] {stalk.shape=e,                                                                                            
        population=y}               => {ring.number=o}              0.1004431  0.9622642 0.1043821 1.0439949   816
[1883] {stalk.shape=e,                                                                                            
        population=y}               => {gill.attachment=f}          0.1043821  1.0000000 0.1043821 1.0265353   848
[1884] {stalk.shape=e,                                                                                            
        population=y}               => {veil.color=w}               0.1043821  1.0000000 0.1043821 1.0252398   848
[1885] {odor=n,                                                                                                   
        population=y}               => {stalk.root=b}               0.1102905  0.9256198 0.1191531 1.9914554   896
[1886] {stalk.root=b,                                                                                             
        population=y}               => {odor=n}                     0.1102905  0.5803109 0.1900542 1.3362941   896
[1887] {odor=n,                                                                                                   
        population=y}               => {ring.type=p}                0.1161989  0.9752066 0.1191531 1.9966176   944
[1888] {ring.type=p,                                                                                              
        population=y}               => {odor=n}                     0.1161989  0.9076923 0.1280158 2.0901622   944
[1889] {odor=n,                                                                                                   
        population=y}               => {class=e}                    0.1191531  1.0000000 0.1191531 1.9306084   968
[1890] {class=e,                                                                                                  
        population=y}               => {odor=n}                     0.1191531  0.9097744 0.1309700 2.0949568   968
[1891] {odor=n,                                                                                                   
        population=y}               => {stalk.shape=t}              0.1063516  0.8925620 0.1191531 1.5736054   864
[1892] {stalk.shape=t,                                                                                            
        population=y}               => {odor=n}                     0.1063516  1.0000000 0.1063516 2.3027211   864
[1893] {odor=n,                                                                                                   
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.9586777 0.1191531 1.5778561   928
[1894] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {odor=n}                     0.1142294  1.0000000 0.1142294 2.3027211   928
[1895] {odor=n,                                                                                                   
        population=y}               => {stalk.surface.above.ring=s} 0.1171837  0.9834711 0.1191531 1.5436088   952
[1896] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {odor=n}                     0.1171837  0.9083969 0.1290005 2.0917848   952
[1897] {odor=n,                                                                                                   
        population=y}               => {gill.size=b}                0.1102905  0.9256198 0.1191531 1.3399386   896
[1898] {gill.size=b,                                                                                              
        population=y}               => {odor=n}                     0.1102905  0.5463415 0.2018710 1.2580720   896
[1899] {odor=n,                                                                                                   
        population=y}               => {gill.spacing=c}             0.1191531  1.0000000 0.1191531 1.1926013   968
[1900] {gill.spacing=c,                                                                                           
        population=y}               => {odor=n}                     0.1191531  0.5654206 0.2107336 1.3020058   968
[1901] {odor=n,                                                                                                   
        population=y}               => {ring.number=o}              0.1152142  0.9669421 0.1191531 1.0490702   936
[1902] {ring.number=o,                                                                                            
        population=y}               => {odor=n}                     0.1152142  0.5571429 0.2067947 1.2829446   936
[1903] {odor=n,                                                                                                   
        population=y}               => {gill.attachment=f}          0.1191531  1.0000000 0.1191531 1.0265353   968
[1904] {gill.attachment=f,                                                                                        
        population=y}               => {odor=n}                     0.1191531  0.5654206 0.2107336 1.3020058   968
[1905] {odor=n,                                                                                                   
        population=y}               => {veil.color=w}               0.1191531  1.0000000 0.1191531 1.0252398   968
[1906] {veil.color=w,                                                                                             
        population=y}               => {odor=n}                     0.1191531  0.5654206 0.2107336 1.3020058   968
[1907] {cap.shape=x,                                                                                              
        population=y}               => {gill.size=b}                0.1004431  0.9668246 0.1038897 1.3995872   816
[1908] {cap.shape=x,                                                                                              
        population=y}               => {gill.spacing=c}             0.1038897  1.0000000 0.1038897 1.1926013   844
[1909] {cap.shape=x,                                                                                              
        population=y}               => {ring.number=o}              0.1024126  0.9857820 0.1038897 1.0695103   832
[1910] {cap.shape=x,                                                                                              
        population=y}               => {gill.attachment=f}          0.1038897  1.0000000 0.1038897 1.0265353   844
[1911] {cap.shape=x,                                                                                              
        population=y}               => {veil.color=w}               0.1038897  1.0000000 0.1038897 1.0252398   844
[1912] {stalk.root=b,                                                                                             
        population=y}               => {ring.type=p}                0.1102905  0.5803109 0.1900542 1.1881163   896
[1913] {ring.type=p,                                                                                              
        population=y}               => {stalk.root=b}               0.1102905  0.8615385 0.1280158 1.8535854   896
[1914] {stalk.root=b,                                                                                             
        population=y}               => {class=e}                    0.1102905  0.5803109 0.1900542 1.1203530   896
[1915] {class=e,                                                                                                  
        population=y}               => {stalk.root=b}               0.1102905  0.8421053 0.1309700 1.8117752   896
[1916] {stalk.root=b,                                                                                             
        population=y}               => {stalk.shape=t}              0.1063516  0.5595855 0.1900542 0.9865609   864
[1917] {stalk.shape=t,                                                                                            
        population=y}               => {stalk.root=b}               0.1063516  1.0000000 0.1063516 2.1514831   864
[1918] {stalk.root=b,                                                                                             
        population=y}               => {stalk.surface.below.ring=s} 0.1083210  0.5699482 0.1900542 0.9380590   880
[1919] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {stalk.root=b}               0.1083210  0.9482759 0.1142294 2.0401994   880
[1920] {stalk.root=b,                                                                                             
        population=y}               => {stalk.surface.above.ring=s} 0.1083210  0.5699482 0.1900542 0.8945632   880
[1921] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {stalk.root=b}               0.1083210  0.8396947 0.1290005 1.8065888   880
[1922] {stalk.root=b,                                                                                             
        population=y}               => {gill.size=b}                0.1900542  1.0000000 0.1900542 1.4476123  1544
[1923] {gill.size=b,                                                                                              
        population=y}               => {stalk.root=b}               0.1900542  0.9414634 0.2018710 2.0255426  1544
[1924] {stalk.root=b,                                                                                             
        population=y}               => {gill.spacing=c}             0.1900542  1.0000000 0.1900542 1.1926013  1544
[1925] {gill.spacing=c,                                                                                           
        population=y}               => {stalk.root=b}               0.1900542  0.9018692 0.2107336 1.9403562  1544
[1926] {stalk.root=b,                                                                                             
        population=y}               => {ring.number=o}              0.1861152  0.9792746 0.1900542 1.0624502  1512
[1927] {ring.number=o,                                                                                            
        population=y}               => {stalk.root=b}               0.1861152  0.9000000 0.2067947 1.9363347  1512
[1928] {stalk.root=b,                                                                                             
        population=y}               => {gill.attachment=f}          0.1900542  1.0000000 0.1900542 1.0265353  1544
[1929] {gill.attachment=f,                                                                                        
        population=y}               => {stalk.root=b}               0.1900542  0.9018692 0.2107336 1.9403562  1544
[1930] {stalk.root=b,                                                                                             
        population=y}               => {veil.color=w}               0.1900542  1.0000000 0.1900542 1.0252398  1544
[1931] {veil.color=w,                                                                                             
        population=y}               => {stalk.root=b}               0.1900542  0.9018692 0.2107336 1.9403562  1544
[1932] {ring.type=p,                                                                                              
        population=y}               => {class=e}                    0.1280158  1.0000000 0.1280158 1.9306084  1040
[1933] {class=e,                                                                                                  
        population=y}               => {ring.type=p}                0.1280158  0.9774436 0.1309700 2.0011976  1040
[1934] {ring.type=p,                                                                                              
        population=y}               => {stalk.shape=t}              0.1063516  0.8307692 0.1280158 1.4646635   864
[1935] {stalk.shape=t,                                                                                            
        population=y}               => {ring.type=p}                0.1063516  1.0000000 0.1063516 2.0473790   864
[1936] {ring.type=p,                                                                                              
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.8923077 0.1280158 1.4686199   928
[1937] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {ring.type=p}                0.1142294  1.0000000 0.1142294 2.0473790   928
[1938] {ring.type=p,                                                                                              
        population=y}               => {stalk.surface.above.ring=s} 0.1260463  0.9846154 0.1280158 1.5454048  1024
[1939] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {ring.type=p}                0.1260463  0.9770992 0.1290005 2.0004925  1024
[1940] {ring.type=p,                                                                                              
        population=y}               => {gill.size=b}                0.1221073  0.9538462 0.1280158 1.3807994   992
[1941] {gill.size=b,                                                                                              
        population=y}               => {ring.type=p}                0.1221073  0.6048780 0.2018710 1.2384146   992
[1942] {ring.type=p,                                                                                              
        population=y}               => {gill.spacing=c}             0.1280158  1.0000000 0.1280158 1.1926013  1040
[1943] {gill.spacing=c,                                                                                           
        population=y}               => {ring.type=p}                0.1280158  0.6074766 0.2107336 1.2437349  1040
[1944] {ring.type=p,                                                                                              
        population=y}               => {ring.number=o}              0.1240768  0.9692308 0.1280158 1.0515533  1008
[1945] {ring.number=o,                                                                                            
        population=y}               => {ring.type=p}                0.1240768  0.6000000 0.2067947 1.2284274  1008
[1946] {ring.type=p,                                                                                              
        population=y}               => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[1947] {gill.attachment=f,                                                                                        
        population=y}               => {ring.type=p}                0.1280158  0.6074766 0.2107336 1.2437349  1040
[1948] {ring.type=p,                                                                                              
        population=y}               => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[1949] {veil.color=w,                                                                                             
        population=y}               => {ring.type=p}                0.1280158  0.6074766 0.2107336 1.2437349  1040
[1950] {class=e,                                                                                                  
        population=y}               => {stalk.shape=t}              0.1063516  0.8120301 0.1309700 1.4316259   864
[1951] {stalk.shape=t,                                                                                            
        population=y}               => {class=e}                    0.1063516  1.0000000 0.1063516 1.9306084   864
[1952] {class=e,                                                                                                  
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.8721805 0.1309700 1.4354931   928
[1953] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {class=e}                    0.1142294  1.0000000 0.1142294 1.9306084   928
[1954] {class=e,                                                                                                  
        population=y}               => {stalk.surface.above.ring=s} 0.1290005  0.9849624 0.1309700 1.5459495  1048
[1955] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {class=e}                    0.1290005  1.0000000 0.1290005 1.9306084  1048
[1956] {class=e,                                                                                                  
        population=y}               => {gill.size=b}                0.1221073  0.9323308 0.1309700 1.3496535   992
[1957] {gill.size=b,                                                                                              
        population=y}               => {class=e}                    0.1221073  0.6048780 0.2018710 1.1677826   992
[1958] {class=e,                                                                                                  
        population=y}               => {gill.spacing=c}             0.1309700  1.0000000 0.1309700 1.1926013  1064
[1959] {gill.spacing=c,                                                                                           
        population=y}               => {class=e}                    0.1309700  0.6214953 0.2107336 1.1998641  1064
[1960] {class=e,                                                                                                  
        population=y}               => {ring.number=o}              0.1270310  0.9699248 0.1309700 1.0523062  1032
[1961] {ring.number=o,                                                                                            
        population=y}               => {class=e}                    0.1270310  0.6142857 0.2067947 1.1859451  1032
[1962] {class=e,                                                                                                  
        population=y}               => {gill.attachment=f}          0.1309700  1.0000000 0.1309700 1.0265353  1064
[1963] {gill.attachment=f,                                                                                        
        population=y}               => {class=e}                    0.1309700  0.6214953 0.2107336 1.1998641  1064
[1964] {class=e,                                                                                                  
        population=y}               => {veil.color=w}               0.1309700  1.0000000 0.1309700 1.0252398  1064
[1965] {veil.color=w,                                                                                             
        population=y}               => {class=e}                    0.1309700  0.6214953 0.2107336 1.1998641  1064
[1966] {stalk.shape=t,                                                                                            
        population=y}               => {stalk.surface.below.ring=s} 0.1063516  1.0000000 0.1063516 1.6458671   864
[1967] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {stalk.shape=t}              0.1063516  0.9310345 0.1142294 1.6414332   864
[1968] {stalk.shape=t,                                                                                            
        population=y}               => {stalk.surface.above.ring=s} 0.1063516  1.0000000 0.1063516 1.5695518   864
[1969] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {stalk.shape=t}              0.1063516  0.8244275 0.1290005 1.4534828   864
[1970] {stalk.shape=t,                                                                                            
        population=y}               => {gill.size=b}                0.1063516  1.0000000 0.1063516 1.4476123   864
[1971] {gill.size=b,                                                                                              
        population=y}               => {stalk.shape=t}              0.1063516  0.5268293 0.2018710 0.9288110   864
[1972] {stalk.shape=t,                                                                                            
        population=y}               => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[1973] {gill.spacing=c,                                                                                           
        population=y}               => {stalk.shape=t}              0.1063516  0.5046729 0.2107336 0.8897488   864
[1974] {stalk.shape=t,                                                                                            
        population=y}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[1975] {ring.number=o,                                                                                            
        population=y}               => {stalk.shape=t}              0.1063516  0.5142857 0.2067947 0.9066964   864
[1976] {stalk.shape=t,                                                                                            
        population=y}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[1977] {gill.attachment=f,                                                                                        
        population=y}               => {stalk.shape=t}              0.1063516  0.5046729 0.2107336 0.8897488   864
[1978] {stalk.shape=t,                                                                                            
        population=y}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[1979] {veil.color=w,                                                                                             
        population=y}               => {stalk.shape=t}              0.1063516  0.5046729 0.2107336 0.8897488   864
[1980] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {stalk.surface.above.ring=s} 0.1142294  1.0000000 0.1142294 1.5695518   928
[1981] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.8854962 0.1290005 1.4574090   928
[1982] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {gill.size=b}                0.1083210  0.9482759 0.1142294 1.3727358   880
[1983] {gill.size=b,                                                                                              
        population=y}               => {stalk.surface.below.ring=s} 0.1083210  0.5365854 0.2018710 0.8831482   880
[1984] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {gill.spacing=c}             0.1142294  1.0000000 0.1142294 1.1926013   928
[1985] {gill.spacing=c,                                                                                           
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.5420561 0.2107336 0.8921523   928
[1986] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {ring.number=o}              0.1122600  0.9827586 0.1142294 1.0662301   912
[1987] {ring.number=o,                                                                                            
        population=y}               => {stalk.surface.below.ring=s} 0.1122600  0.5428571 0.2067947 0.8934707   912
[1988] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {gill.attachment=f}          0.1142294  1.0000000 0.1142294 1.0265353   928
[1989] {gill.attachment=f,                                                                                        
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.5420561 0.2107336 0.8921523   928
[1990] {stalk.surface.below.ring=s,                                                                               
        population=y}               => {veil.color=w}               0.1142294  1.0000000 0.1142294 1.0252398   928
[1991] {veil.color=w,                                                                                             
        population=y}               => {stalk.surface.below.ring=s} 0.1142294  0.5420561 0.2107336 0.8921523   928
[1992] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {gill.size=b}                0.1201379  0.9312977 0.1290005 1.3481580   976
[1993] {gill.size=b,                                                                                              
        population=y}               => {stalk.surface.above.ring=s} 0.1201379  0.5951220 0.2018710 0.9340747   976
[1994] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {gill.spacing=c}             0.1290005  1.0000000 0.1290005 1.1926013  1048
[1995] {gill.spacing=c,                                                                                           
        population=y}               => {stalk.surface.above.ring=s} 0.1290005  0.6121495 0.2107336 0.9608004  1048
[1996] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {ring.number=o}              0.1270310  0.9847328 0.1290005 1.0683720  1032
[1997] {ring.number=o,                                                                                            
        population=y}               => {stalk.surface.above.ring=s} 0.1270310  0.6142857 0.2067947 0.9641532  1032
[1998] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {gill.attachment=f}          0.1290005  1.0000000 0.1290005 1.0265353  1048
[1999] {gill.attachment=f,                                                                                        
        population=y}               => {stalk.surface.above.ring=s} 0.1290005  0.6121495 0.2107336 0.9608004  1048
[2000] {stalk.surface.above.ring=s,                                                                               
        population=y}               => {veil.color=w}               0.1290005  1.0000000 0.1290005 1.0252398  1048
[2001] {veil.color=w,                                                                                             
        population=y}               => {stalk.surface.above.ring=s} 0.1290005  0.6121495 0.2107336 0.9608004  1048
[2002] {gill.size=b,                                                                                              
        population=y}               => {gill.spacing=c}             0.2018710  1.0000000 0.2018710 1.1926013  1640
[2003] {gill.spacing=c,                                                                                           
        population=y}               => {gill.size=b}                0.2018710  0.9579439 0.2107336 1.3867314  1640
[2004] {gill.size=b,                                                                                              
        population=y}               => {ring.number=o}              0.1979321  0.9804878 0.2018710 1.0637664  1608
[2005] {ring.number=o,                                                                                            
        population=y}               => {gill.size=b}                0.1979321  0.9571429 0.2067947 1.3855717  1608
[2006] {gill.size=b,                                                                                              
        population=y}               => {gill.attachment=f}          0.2018710  1.0000000 0.2018710 1.0265353  1640
[2007] {gill.attachment=f,                                                                                        
        population=y}               => {gill.size=b}                0.2018710  0.9579439 0.2107336 1.3867314  1640
[2008] {gill.size=b,                                                                                              
        population=y}               => {veil.color=w}               0.2018710  1.0000000 0.2018710 1.0252398  1640
[2009] {veil.color=w,                                                                                             
        population=y}               => {gill.size=b}                0.2018710  0.9579439 0.2107336 1.3867314  1640
[2010] {gill.spacing=c,                                                                                           
        population=y}               => {ring.number=o}              0.2067947  0.9813084 0.2107336 1.0646567  1680
[2011] {ring.number=o,                                                                                            
        population=y}               => {gill.spacing=c}             0.2067947  1.0000000 0.2067947 1.1926013  1680
[2012] {gill.spacing=c,                                                                                           
        population=y}               => {gill.attachment=f}          0.2107336  1.0000000 0.2107336 1.0265353  1712
[2013] {gill.attachment=f,                                                                                        
        population=y}               => {gill.spacing=c}             0.2107336  1.0000000 0.2107336 1.1926013  1712
[2014] {gill.spacing=c,                                                                                           
        population=y}               => {veil.color=w}               0.2107336  1.0000000 0.2107336 1.0252398  1712
[2015] {veil.color=w,                                                                                             
        population=y}               => {gill.spacing=c}             0.2107336  1.0000000 0.2107336 1.1926013  1712
[2016] {ring.number=o,                                                                                            
        population=y}               => {gill.attachment=f}          0.2067947  1.0000000 0.2067947 1.0265353  1680
[2017] {gill.attachment=f,                                                                                        
        population=y}               => {ring.number=o}              0.2067947  0.9813084 0.2107336 1.0646567  1680
[2018] {ring.number=o,                                                                                            
        population=y}               => {veil.color=w}               0.2067947  1.0000000 0.2067947 1.0252398  1680
[2019] {veil.color=w,                                                                                             
        population=y}               => {ring.number=o}              0.2067947  0.9813084 0.2107336 1.0646567  1680
[2020] {gill.attachment=f,                                                                                        
        population=y}               => {veil.color=w}               0.2107336  1.0000000 0.2107336 1.0252398  1712
[2021] {veil.color=w,                                                                                             
        population=y}               => {gill.attachment=f}          0.2107336  1.0000000 0.2107336 1.0265353  1712
[2022] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2023] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2024] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2025] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2026] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2027] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2028] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2029] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2030] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2031] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2032] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2033] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2034] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2035] {class=p,                                                                                                  
        gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2036] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2037] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2038] {gill.color=b,                                                                                             
        population=v}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2039] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {gill.color=b}               0.1063516  0.6315789 0.1683900 2.9692982   864
[2040] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2041] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2042] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {gill.color=b}               0.1063516  0.6000000 0.1772526 2.8208333   864
[2043] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2044] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2045] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2046] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2047] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2048] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2049] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2050] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2051] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2052] {gill.color=b,                                                                                             
        stalk.color.below.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2053] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2054] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2055] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2056] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2057] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2058] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2059] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2060] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2061] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2062] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2063] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2064] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2065] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2066] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2067] {class=p,                                                                                                  
        gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2068] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2069] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2070] {gill.color=b,                                                                                             
        population=v}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2071] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {gill.color=b}               0.1063516  0.6315789 0.1683900 2.9692982   864
[2072] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2073] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2074] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {gill.color=b}               0.1063516  0.6000000 0.1772526 2.8208333   864
[2075] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2076] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2077] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2078] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2079] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2080] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2081] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2082] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2083] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2084] {gill.color=b,                                                                                             
        stalk.color.above.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2085] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2086] {cap.color=n,                                                                                              
        gill.color=b}               => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2087] {gill.color=b,                                                                                             
        spore.print.color=w}        => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2088] {cap.color=n,                                                                                              
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.8744939 0.1216150 4.1113360   864
[2089] {cap.color=n,                                                                                              
        gill.color=b}               => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2090] {gill.color=b,                                                                                             
        stalk.root=?}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2091] {cap.color=n,                                                                                              
        stalk.root=?}               => {gill.color=b}               0.1063516  0.7714286 0.1378631 3.6267857   864
[2092] {cap.color=n,                                                                                              
        gill.color=b}               => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2093] {gill.size=n,                                                                                              
        gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2094] {cap.color=n,                                                                                              
        gill.size=n}                => {gill.color=b}               0.1063516  0.8000000 0.1329394 3.7611111   864
[2095] {cap.color=n,                                                                                              
        gill.color=b}               => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2096] {gill.color=b,                                                                                             
        ring.type=e}                => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2097] {cap.color=n,                                                                                              
        ring.type=e}                => {gill.color=b}               0.1063516  0.7152318 0.1486952 3.3625828   864
[2098] {cap.color=n,                                                                                              
        gill.color=b}               => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2099] {class=p,                                                                                                  
        gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2100] {class=p,                                                                                                  
        cap.color=n}                => {gill.color=b}               0.1063516  0.8470588 0.1255539 3.9823529   864
[2101] {cap.color=n,                                                                                              
        gill.color=b}               => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2102] {gill.color=b,                                                                                             
        population=v}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2103] {cap.color=n,                                                                                              
        population=v}               => {gill.color=b}               0.1063516  0.6260870 0.1698671 2.9434783   864
[2104] {cap.color=n,                                                                                              
        gill.color=b}               => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2105] {gill.color=b,                                                                                             
        stalk.shape=t}              => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2106] {cap.color=n,                                                                                              
        stalk.shape=t}              => {gill.color=b}               0.1063516  0.5094340 0.2087642 2.3950472   864
[2107] {cap.color=n,                                                                                              
        gill.color=b}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2108] {bruises=f,                                                                                                
        gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2109] {cap.color=n,                                                                                              
        bruises=f}                  => {gill.color=b}               0.1063516  0.6050420 0.1757755 2.8445378   864
[2110] {cap.color=n,                                                                                              
        gill.color=b}               => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2111] {gill.spacing=c,                                                                                           
        gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2112] {cap.color=n,                                                                                              
        gill.color=b}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2113] {gill.color=b,                                                                                             
        ring.number=o}              => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2114] {cap.color=n,                                                                                              
        gill.color=b}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2115] {gill.attachment=f,                                                                                        
        gill.color=b}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2116] {cap.color=n,                                                                                              
        gill.color=b}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2117] {gill.color=b,                                                                                             
        veil.color=w}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[2118] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2119] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2120] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.8571429 0.1240768 4.0297619   864
[2121] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2122] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2123] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {gill.color=b}               0.1063516  0.8571429 0.1240768 4.0297619   864
[2124] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2125] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2126] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2127] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2128] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2129] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2130] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2131] {class=p,                                                                                                  
        gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2132] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2133] {gill.color=b,                                                                                             
        population=v}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2134] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {gill.color=b}               0.1063516  0.5714286 0.1861152 2.6865079   864
[2135] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2136] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2137] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2138] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2139] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2140] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2141] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2142] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2143] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2144] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2145] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2146] {gill.color=b,                                                                                             
        stalk.surface.below.ring=k} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2147] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[2148] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2149] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2150] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.8029740 0.1324471 3.7750929   864
[2151] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2152] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2153] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {gill.color=b}               0.1063516  0.8307692 0.1280158 3.9057692   864
[2154] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2155] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2156] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {gill.color=b}               0.1063516  0.9642857 0.1102905 4.5334821   864
[2157] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2158] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2159] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {gill.color=b}               0.1063516  0.9642857 0.1102905 4.5334821   864
[2160] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2161] {class=p,                                                                                                  
        gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2162] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2163] {gill.color=b,                                                                                             
        population=v}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2164] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {gill.color=b}               0.1063516  0.5595855 0.1900542 2.6308290   864
[2165] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2166] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2167] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {gill.color=b}               0.1063516  1.0000000 0.1063516 4.7013889   864
[2168] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2169] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2170] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2171] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2172] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2173] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2174] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2175] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2176] {gill.color=b,                                                                                             
        stalk.surface.above.ring=k} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2177] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[2178] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2179] {gill.color=b,                                                                                             
        stalk.root=?}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2180] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.7714286 0.2757262 3.6267857  1728
[2181] {gill.color=b,                                                                                             
        spore.print.color=w}        => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2182] {gill.size=n,                                                                                              
        gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2183] {gill.size=n,                                                                                              
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.9473684 0.2245199 4.4539474  1728
[2184] {gill.color=b,                                                                                             
        spore.print.color=w}        => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2185] {cap.surface=s,                                                                                            
        gill.color=b}               => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2186] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.7659574 0.1388479 3.6010638   864
[2187] {gill.color=b,                                                                                             
        spore.print.color=w}        => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2188] {gill.color=b,                                                                                             
        ring.type=e}                => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2189] {ring.type=e,                                                                                              
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.8605578 0.2471689 4.0458167  1728
[2190] {gill.color=b,                                                                                             
        spore.print.color=w}        => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2191] {cap.surface=y,                                                                                            
        gill.color=b}               => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2192] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.8059701 0.1319547 3.7891791   864
[2193] {gill.color=b,                                                                                             
        spore.print.color=w}        => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2194] {class=p,                                                                                                  
        gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2195] {class=p,                                                                                                  
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.9536424 0.2230428 4.4834437  1728
[2196] {gill.color=b,                                                                                             
        spore.print.color=w}        => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2197] {gill.color=b,                                                                                             
        population=v}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2198] {spore.print.color=w,                                                                                      
        population=v}               => {gill.color=b}               0.2127031  0.9473684 0.2245199 4.4539474  1728
[2199] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2200] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2201] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.6708075 0.1585426 3.1537267   864
[2202] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2203] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2204] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.6315789 0.1683900 2.9692982   864
[2205] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2206] {gill.color=b,                                                                                             
        stalk.shape=t}              => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2207] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {gill.color=b}               0.2127031  1.0000000 0.2127031 4.7013889  1728
[2208] {gill.color=b,                                                                                             
        spore.print.color=w}        => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2209] {bruises=f,                                                                                                
        gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2210] {bruises=f,                                                                                                
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.8014842 0.2653865 3.7680891  1728
[2211] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2212] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2213] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.6835443 0.1555884 3.2136076   864
[2214] {gill.color=b,                                                                                             
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2215] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2216] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {gill.color=b}               0.1063516  0.6835443 0.1555884 3.2136076   864
[2217] {gill.color=b,                                                                                             
        spore.print.color=w}        => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2218] {gill.spacing=c,                                                                                           
        gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2219] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.8487230 0.2506155 3.9901768  1728
[2220] {gill.color=b,                                                                                             
        spore.print.color=w}        => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2221] {gill.color=b,                                                                                             
        ring.number=o}              => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2222] {ring.number=o,                                                                                            
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.9473684 0.2245199 4.4539474  1728
[2223] {gill.color=b,                                                                                             
        spore.print.color=w}        => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2224] {gill.attachment=f,                                                                                        
        gill.color=b}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2225] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.7291139 0.2917282 3.4278481  1728
[2226] {gill.color=b,                                                                                             
        spore.print.color=w}        => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2227] {gill.color=b,                                                                                             
        veil.color=w}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[2228] {veil.color=w,                                                                                             
        spore.print.color=w}        => {gill.color=b}               0.2127031  0.7260504 0.2929591 3.4134454  1728
[2229] {gill.color=b,                                                                                             
        stalk.root=?}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2230] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2231] {gill.size=n,                                                                                              
        stalk.root=?}               => {gill.color=b}               0.2127031  0.9557522 0.2225505 4.4933628  1728
[2232] {gill.color=b,                                                                                             
        stalk.root=?}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2233] {cap.surface=s,                                                                                            
        gill.color=b}               => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2234] {cap.surface=s,                                                                                            
        stalk.root=?}               => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2235] {gill.color=b,                                                                                             
        stalk.root=?}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2236] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2237] {stalk.root=?,                                                                                             
        ring.type=e}                => {gill.color=b}               0.2127031  0.8852459 0.2402757 4.1618852  1728
[2238] {gill.color=b,                                                                                             
        stalk.root=?}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2239] {cap.surface=y,                                                                                            
        gill.color=b}               => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2240] {cap.surface=y,                                                                                            
        stalk.root=?}               => {gill.color=b}               0.1063516  0.8437500 0.1260463 3.9667969   864
[2241] {gill.color=b,                                                                                             
        stalk.root=?}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2242] {class=p,                                                                                                  
        gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2243] {class=p,                                                                                                  
        stalk.root=?}               => {gill.color=b}               0.2127031  0.9818182 0.2166420 4.6159091  1728
[2244] {gill.color=b,                                                                                             
        stalk.root=?}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2245] {gill.color=b,                                                                                             
        population=v}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2246] {stalk.root=?,                                                                                             
        population=v}               => {gill.color=b}               0.2127031  0.9191489 0.2314131 4.3212766  1728
[2247] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2248] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2249] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {gill.color=b}               0.1063516  0.6666667 0.1595273 3.1342593   864
[2250] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2251] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2252] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {gill.color=b}               0.1063516  0.6506024 0.1634663 3.0587349   864
[2253] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2254] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2255] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {gill.color=b}               0.2127031  1.0000000 0.2127031 4.7013889  1728
[2256] {gill.color=b,                                                                                             
        stalk.root=?}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2257] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2258] {bruises=f,                                                                                                
        stalk.root=?}               => {gill.color=b}               0.2127031  0.7552448 0.2816347 3.5506993  1728
[2259] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2260] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2261] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {gill.color=b}               0.1063516  0.6206897 0.1713442 2.9181034   864
[2262] {gill.color=b,                                                                                             
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2263] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2264] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {gill.color=b}               0.1063516  0.6000000 0.1772526 2.8208333   864
[2265] {gill.color=b,                                                                                             
        stalk.root=?}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2266] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2267] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {gill.color=b}               0.2127031  0.7883212 0.2698178 3.7062044  1728
[2268] {gill.color=b,                                                                                             
        stalk.root=?}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2269] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2270] {stalk.root=?,                                                                                             
        ring.number=o}              => {gill.color=b}               0.2127031  0.8640000 0.2461841 4.0620000  1728
[2271] {gill.color=b,                                                                                             
        stalk.root=?}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2272] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2273] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {gill.color=b}               0.2127031  0.7552448 0.2816347 3.5506993  1728
[2274] {gill.color=b,                                                                                             
        stalk.root=?}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2275] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[2276] {stalk.root=?,                                                                                             
        veil.color=w}               => {gill.color=b}               0.2127031  0.7552448 0.2816347 3.5506993  1728
[2277] {gill.size=n,                                                                                              
        gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2278] {cap.surface=s,                                                                                            
        gill.color=b}               => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2279] {cap.surface=s,                                                                                            
        gill.size=n}                => {gill.color=b}               0.1063516  0.7605634 0.1398326 3.5757042   864
[2280] {gill.size=n,                                                                                              
        gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2281] {gill.color=b,                                                                                             
        ring.type=e}                => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2282] {gill.size=n,                                                                                              
        ring.type=e}                => {gill.color=b}               0.2127031  0.9515419 0.2235352 4.4735683  1728
[2283] {gill.size=n,                                                                                              
        gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2284] {cap.surface=y,                                                                                            
        gill.color=b}               => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2285] {cap.surface=y,                                                                                            
        gill.size=n}                => {gill.color=b}               0.1063516  0.7912088 0.1344165 3.7197802   864
[2286] {gill.size=n,                                                                                              
        gill.color=b}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2287] {class=p,                                                                                                  
        gill.color=b}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2288] {class=p,                                                                                                  
        gill.size=n}                => {gill.color=b}               0.2127031  0.7769784 0.2737568 3.6528777  1728
[2289] {gill.size=n,                                                                                              
        gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2290] {gill.color=b,                                                                                             
        population=v}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2291] {gill.size=n,                                                                                              
        population=v}               => {gill.color=b}               0.2127031  0.7854545 0.2708026 3.6927273  1728
[2292] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2293] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2294] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {gill.color=b}               0.1063516  0.5538462 0.1920236 2.6038462   864
[2295] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2296] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2297] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {gill.color=b}               0.1063516  0.5268293 0.2018710 2.4768293   864
[2298] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2299] {gill.color=b,                                                                                             
        stalk.shape=t}              => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2300] {gill.size=n,                                                                                              
        stalk.shape=t}              => {gill.color=b}               0.2127031  0.9473684 0.2245199 4.4539474  1728
[2301] {gill.size=n,                                                                                              
        gill.color=b}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2302] {bruises=f,                                                                                                
        gill.color=b}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2303] {bruises=f,                                                                                                
        gill.size=n}                => {gill.color=b}               0.2127031  0.8029740 0.2648941 3.7750929  1728
[2304] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2305] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2306] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.color=b}               0.1063516  0.5625000 0.1890694 2.6445312   864
[2307] {gill.size=n,                                                                                              
        gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2308] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2309] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.color=b}               0.1063516  0.5454545 0.1949778 2.5643939   864
[2310] {gill.size=n,                                                                                              
        gill.color=b}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2311] {gill.spacing=c,                                                                                           
        gill.color=b}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2312] {gill.spacing=c,                                                                                           
        gill.size=n}                => {gill.color=b}               0.2127031  0.7659574 0.2776957 3.6010638  1728
[2313] {gill.size=n,                                                                                              
        gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2314] {gill.color=b,                                                                                             
        ring.number=o}              => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2315] {gill.size=n,                                                                                              
        ring.number=o}              => {gill.color=b}               0.2127031  0.6878981 0.3092073 3.2340764  1728
[2316] {gill.size=n,                                                                                              
        gill.color=b}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2317] {gill.attachment=f,                                                                                        
        gill.color=b}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2318] {gill.attachment=f,                                                                                        
        gill.size=n}                => {gill.color=b}               0.2127031  0.6878981 0.3092073 3.2340764  1728
[2319] {gill.size=n,                                                                                              
        gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2320] {gill.color=b,                                                                                             
        veil.color=w}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[2321] {gill.size=n,                                                                                              
        veil.color=w}               => {gill.color=b}               0.2127031  0.6900958 0.3082226 3.2444089  1728
[2322] {cap.surface=s,                                                                                            
        gill.color=b}               => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2323] {gill.color=b,                                                                                             
        ring.type=e}                => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2324] {cap.surface=s,                                                                                            
        ring.type=e}                => {gill.color=b}               0.1063516  0.6428571 0.1654357 3.0223214   864
[2325] {cap.surface=s,                                                                                            
        gill.color=b}               => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2326] {class=p,                                                                                                  
        gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2327] {class=p,                                                                                                  
        cap.surface=s}              => {gill.color=b}               0.1063516  0.6118980 0.1738060 2.8767705   864
[2328] {cap.surface=s,                                                                                            
        gill.color=b}               => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2329] {gill.color=b,                                                                                             
        population=v}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2330] {cap.surface=s,                                                                                            
        population=v}               => {gill.color=b}               0.1063516  0.6605505 0.1610044 3.1055046   864
[2331] {cap.surface=s,                                                                                            
        gill.color=b}               => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2332] {gill.color=b,                                                                                             
        stalk.shape=t}              => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2333] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {gill.color=b}               0.1063516  0.5454545 0.1949778 2.5643939   864
[2334] {cap.surface=s,                                                                                            
        gill.color=b}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2335] {bruises=f,                                                                                                
        gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2336] {cap.surface=s,                                                                                            
        bruises=f}                  => {gill.color=b}               0.1063516  0.5118483 0.2077794 2.4063981   864
[2337] {cap.surface=s,                                                                                            
        gill.color=b}               => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2338] {gill.spacing=c,                                                                                           
        gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2339] {cap.surface=s,                                                                                            
        gill.color=b}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2340] {gill.color=b,                                                                                             
        ring.number=o}              => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2341] {cap.surface=s,                                                                                            
        gill.color=b}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2342] {gill.attachment=f,                                                                                        
        gill.color=b}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2343] {cap.surface=s,                                                                                            
        gill.color=b}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2344] {gill.color=b,                                                                                             
        veil.color=w}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[2345] {gill.color=b,                                                                                             
        ring.type=e}                => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2346] {cap.surface=y,                                                                                            
        gill.color=b}               => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2347] {cap.surface=y,                                                                                            
        ring.type=e}                => {gill.color=b}               0.1063516  0.8571429 0.1240768 4.0297619   864
[2348] {gill.color=b,                                                                                             
        ring.type=e}                => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2349] {class=p,                                                                                                  
        gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2350] {class=p,                                                                                                  
        ring.type=e}                => {gill.color=b}               0.2127031  0.9773756 0.2176268 4.5950226  1728
[2351] {gill.color=b,                                                                                             
        ring.type=e}                => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2352] {gill.color=b,                                                                                             
        population=v}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2353] {ring.type=e,                                                                                              
        population=v}               => {gill.color=b}               0.2127031  0.9557522 0.2225505 4.4933628  1728
[2354] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2355] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2356] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {gill.color=b}               0.1063516  0.5000000 0.2127031 2.3506944   864
[2357] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2358] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2359] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2360] {gill.color=b,                                                                                             
        stalk.shape=t}              => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2361] {stalk.shape=t,                                                                                            
        ring.type=e}                => {gill.color=b}               0.2127031  0.6923077 0.3072378 3.2548077  1728
[2362] {gill.color=b,                                                                                             
        ring.type=e}                => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2363] {bruises=f,                                                                                                
        gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2364] {bruises=f,                                                                                                
        ring.type=e}                => {gill.color=b}               0.2127031  0.6687307 0.3180699 3.1439628  1728
[2365] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2366] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2367] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {gill.color=b}               0.1063516  0.5901639 0.1802068 2.7745902   864
[2368] {gill.color=b,                                                                                             
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2369] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2370] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {gill.color=b}               0.1063516  0.5901639 0.1802068 2.7745902   864
[2371] {gill.color=b,                                                                                             
        ring.type=e}                => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2372] {gill.spacing=c,                                                                                           
        gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2373] {gill.spacing=c,                                                                                           
        ring.type=e}                => {gill.color=b}               0.2127031  0.8852459 0.2402757 4.1618852  1728
[2374] {gill.color=b,                                                                                             
        ring.type=e}                => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2375] {gill.color=b,                                                                                             
        ring.number=o}              => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2376] {ring.number=o,                                                                                            
        ring.type=e}                => {gill.color=b}               0.2127031  0.6687307 0.3180699 3.1439628  1728
[2377] {gill.color=b,                                                                                             
        ring.type=e}                => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2378] {gill.attachment=f,                                                                                        
        gill.color=b}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2379] {gill.attachment=f,                                                                                        
        ring.type=e}                => {gill.color=b}               0.2127031  0.6224784 0.3417036 2.9265130  1728
[2380] {gill.color=b,                                                                                             
        ring.type=e}                => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2381] {gill.color=b,                                                                                             
        veil.color=w}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[2382] {veil.color=w,                                                                                             
        ring.type=e}                => {gill.color=b}               0.2127031  0.6242775 0.3407189 2.9349711  1728
[2383] {cap.surface=y,                                                                                            
        gill.color=b}               => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2384] {class=p,                                                                                                  
        gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2385] {cap.surface=y,                                                                                            
        gill.color=b}               => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2386] {gill.color=b,                                                                                             
        population=v}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2387] {cap.surface=y,                                                                                            
        gill.color=b}               => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2388] {gill.color=b,                                                                                             
        stalk.shape=t}              => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2389] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {gill.color=b}               0.1063516  0.5000000 0.2127031 2.3506944   864
[2390] {cap.surface=y,                                                                                            
        gill.color=b}               => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2391] {bruises=f,                                                                                                
        gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2392] {cap.surface=y,                                                                                            
        bruises=f}                  => {gill.color=b}               0.1063516  0.5230024 0.2033481 2.4588378   864
[2393] {cap.surface=y,                                                                                            
        gill.color=b}               => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2394] {gill.spacing=c,                                                                                           
        gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2395] {cap.surface=y,                                                                                            
        gill.color=b}               => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2396] {gill.color=b,                                                                                             
        ring.number=o}              => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2397] {cap.surface=y,                                                                                            
        gill.color=b}               => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2398] {gill.attachment=f,                                                                                        
        gill.color=b}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2399] {cap.surface=y,                                                                                            
        gill.color=b}               => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2400] {gill.color=b,                                                                                             
        veil.color=w}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[2401] {class=p,                                                                                                  
        gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2402] {gill.color=b,                                                                                             
        population=v}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2403] {class=p,                                                                                                  
        population=v}               => {gill.color=b}               0.2127031  0.6067416 0.3505662 2.8525281  1728
[2404] {class=p,                                                                                                  
        gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2405] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2406] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {gill.color=b}               0.1063516  0.5142857 0.2067947 2.4178571   864
[2407] {class=p,                                                                                                  
        gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2408] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2409] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {gill.color=b}               0.1063516  0.5046729 0.2107336 2.3726636   864
[2410] {class=p,                                                                                                  
        gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2411] {gill.color=b,                                                                                             
        stalk.shape=t}              => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2412] {class=p,                                                                                                  
        stalk.shape=t}              => {gill.color=b}               0.2127031  0.8571429 0.2481536 4.0297619  1728
[2413] {class=p,                                                                                                  
        gill.color=b}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2414] {bruises=f,                                                                                                
        gill.color=b}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2415] {class=p,                                                                                                  
        bruises=f}                  => {gill.color=b}               0.2127031  0.5249089 0.4052191 2.4678007  1728
[2416] {class=p,                                                                                                  
        gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2417] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2418] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {gill.color=b}               0.1063516  0.5625000 0.1890694 2.6445312   864
[2419] {class=p,                                                                                                  
        gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2420] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2421] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {gill.color=b}               0.1063516  0.5625000 0.1890694 2.6445312   864
[2422] {class=p,                                                                                                  
        gill.color=b}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2423] {gill.spacing=c,                                                                                           
        gill.color=b}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2424] {class=p,                                                                                                  
        gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2425] {gill.color=b,                                                                                             
        ring.number=o}              => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2426] {class=p,                                                                                                  
        gill.color=b}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2427] {gill.attachment=f,                                                                                        
        gill.color=b}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2428] {class=p,                                                                                                  
        gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2429] {gill.color=b,                                                                                             
        veil.color=w}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[2430] {gill.color=b,                                                                                             
        population=v}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2431] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2432] {gill.color=b,                                                                                             
        population=v}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2433] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2434] {gill.color=b,                                                                                             
        population=v}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2435] {gill.color=b,                                                                                             
        stalk.shape=t}              => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2436] {stalk.shape=t,                                                                                            
        population=v}               => {gill.color=b}               0.2127031  0.6101695 0.3485968 2.8686441  1728
[2437] {gill.color=b,                                                                                             
        population=v}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2438] {bruises=f,                                                                                                
        gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2439] {bruises=f,                                                                                                
        population=v}               => {gill.color=b}               0.2127031  0.6352941 0.3348104 2.9867647  1728
[2440] {gill.color=b,                                                                                             
        population=v}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2441] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2442] {gill.color=b,                                                                                             
        population=v}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2443] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2444] {gill.color=b,                                                                                             
        population=v}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2445] {gill.spacing=c,                                                                                           
        gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2446] {gill.color=b,                                                                                             
        population=v}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2447] {gill.color=b,                                                                                             
        ring.number=o}              => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2448] {gill.color=b,                                                                                             
        population=v}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2449] {gill.attachment=f,                                                                                        
        gill.color=b}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2450] {gill.color=b,                                                                                             
        population=v}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2451] {gill.color=b,                                                                                             
        veil.color=w}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[2452] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2453] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2454] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2455] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2456] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2457] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2458] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2459] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2460] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2461] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2462] {gill.color=b,                                                                                             
        stalk.color.below.ring=w}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2463] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[2464] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2465] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2466] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2467] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2468] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2469] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2470] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2471] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2472] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2473] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2474] {gill.color=b,                                                                                             
        stalk.color.above.ring=w}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2475] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[2476] {gill.color=b,                                                                                             
        stalk.shape=t}              => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2477] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2478] {bruises=f,                                                                                                
        stalk.shape=t}              => {gill.color=b}               0.2127031  0.6923077 0.3072378 3.2548077  1728
[2479] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2480] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2481] {gill.color=b,                                                                                             
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2482] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2483] {gill.color=b,                                                                                             
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2484] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2485] {gill.color=b,                                                                                             
        stalk.shape=t}              => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2486] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2487] {gill.color=b,                                                                                             
        stalk.shape=t}              => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2488] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2489] {gill.color=b,                                                                                             
        stalk.shape=t}              => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2490] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.shape=t}              0.2127031  1.0000000 0.2127031 1.7630208  1728
[2491] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2492] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2493] {bruises=f,                                                                                                
        gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2494] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2495] {bruises=f,                                                                                                
        gill.color=b}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2496] {gill.spacing=c,                                                                                           
        gill.color=b}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2497] {bruises=f,                                                                                                
        gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2498] {gill.color=b,                                                                                             
        ring.number=o}              => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2499] {bruises=f,                                                                                                
        gill.color=b}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2500] {gill.attachment=f,                                                                                        
        gill.color=b}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2501] {bruises=f,                                                                                                
        gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2502] {gill.color=b,                                                                                             
        veil.color=w}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[2503] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2504] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2505] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2506] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2507] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2508] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2509] {gill.color=b,                                                                                             
        stalk.surface.below.ring=s} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2510] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[2511] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2512] {gill.spacing=c,                                                                                           
        gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2513] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2514] {gill.color=b,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2515] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2516] {gill.attachment=f,                                                                                        
        gill.color=b}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2517] {gill.color=b,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2518] {gill.color=b,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[2519] {gill.spacing=c,                                                                                           
        gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2520] {gill.color=b,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2521] {gill.spacing=c,                                                                                           
        gill.color=b}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2522] {gill.attachment=f,                                                                                        
        gill.color=b}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2523] {gill.spacing=c,                                                                                           
        gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2524] {gill.color=b,                                                                                             
        veil.color=w}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[2525] {gill.color=b,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2526] {gill.attachment=f,                                                                                        
        gill.color=b}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2527] {gill.color=b,                                                                                             
        ring.number=o}              => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2528] {gill.color=b,                                                                                             
        veil.color=w}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[2529] {gill.attachment=f,                                                                                        
        gill.color=b}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2530] {gill.color=b,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2531] {cap.surface=f,                                                                                            
        cap.color=g}                => {ring.number=o}              0.1009355  0.9192825 0.1097981 0.9973626   820
[2532] {cap.surface=f,                                                                                            
        cap.color=g}                => {gill.attachment=f}          0.1097981  1.0000000 0.1097981 1.0265353   892
[2533] {cap.surface=f,                                                                                            
        cap.color=g}                => {veil.color=w}               0.1097981  1.0000000 0.1097981 1.0252398   892
[2534] {cap.color=g,                                                                                              
        habitat=d}                  => {stalk.root=b}               0.1053668  1.0000000 0.1053668 2.1514831   856
[2535] {cap.color=g,                                                                                              
        stalk.root=b}               => {habitat=d}                  0.1053668  0.6149425 0.1713442 1.5869737   856
[2536] {cap.color=g,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.1014279  0.9626168 0.1053668 1.1480181   824
[2537] {cap.color=g,                                                                                              
        gill.spacing=c}             => {habitat=d}                  0.1014279  0.5852273 0.1733136 1.5102879   824
[2538] {cap.color=g,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1053668  1.0000000 0.1053668 1.0849359   856
[2539] {cap.color=g,                                                                                              
        ring.number=o}              => {habitat=d}                  0.1053668  0.5071090 0.2077794 1.3086892   856
[2540] {cap.color=g,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1053668  1.0000000 0.1053668 1.0265353   856
[2541] {cap.color=g,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1053668  1.0000000 0.1053668 1.0252398   856
[2542] {cap.color=g,                                                                                              
        stalk.shape=e}              => {bruises=f}                  0.1112752  0.9912281 0.1122600 1.6960271   904
[2543] {cap.color=g,                                                                                              
        bruises=f}                  => {stalk.shape=e}              0.1112752  0.7793103 0.1427868 1.8006591   904
[2544] {cap.color=g,                                                                                              
        stalk.shape=e}              => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[2545] {cap.color=g,                                                                                              
        stalk.shape=e}              => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[2546] {cap.color=g,                                                                                              
        odor=n}                     => {class=e}                    0.1270310  1.0000000 0.1270310 1.9306084  1032
[2547] {class=e,                                                                                                  
        cap.color=g}                => {odor=n}                     0.1270310  1.0000000 0.1270310 2.3027211  1032
[2548] {cap.color=g,                                                                                              
        odor=n}                     => {stalk.shape=t}              0.1024126  0.8062016 0.1270310 1.4213501   832
[2549] {cap.color=g,                                                                                              
        stalk.shape=t}              => {odor=n}                     0.1024126  0.8965517 0.1142294 2.0645086   832
[2550] {cap.color=g,                                                                                              
        odor=n}                     => {stalk.surface.below.ring=s} 0.1024126  0.8062016 0.1270310 1.3269006   832
[2551] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {odor=n}                     0.1024126  0.8813559 0.1161989 2.0295169   832
[2552] {cap.color=g,                                                                                              
        odor=n}                     => {stalk.surface.above.ring=s} 0.1024126  0.8062016 0.1270310 1.2653751   832
[2553] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {odor=n}                     0.1024126  0.8813559 0.1161989 2.0295169   832
[2554] {cap.color=g,                                                                                              
        odor=n}                     => {gill.size=b}                0.1211226  0.9534884 0.1270310 1.3802815   984
[2555] {cap.color=g,                                                                                              
        gill.size=b}                => {odor=n}                     0.1211226  0.5694444 0.2127031 1.3112717   984
[2556] {cap.color=g,                                                                                              
        odor=n}                     => {ring.number=o}              0.1083210  0.8527132 0.1270310 0.9251391   880
[2557] {cap.color=g,                                                                                              
        ring.number=o}              => {odor=n}                     0.1083210  0.5213270 0.2077794 1.2004707   880
[2558] {cap.color=g,                                                                                              
        odor=n}                     => {gill.attachment=f}          0.1270310  1.0000000 0.1270310 1.0265353  1032
[2559] {cap.color=g,                                                                                              
        gill.attachment=f}          => {odor=n}                     0.1270310  0.5608696 0.2264894 1.2915262  1032
[2560] {cap.color=g,                                                                                              
        odor=n}                     => {veil.color=w}               0.1270310  1.0000000 0.1270310 1.0252398  1032
[2561] {cap.color=g,                                                                                              
        veil.color=w}               => {odor=n}                     0.1270310  0.5608696 0.2264894 1.2915262  1032
[2562] {cap.shape=x,                                                                                              
        cap.color=g}                => {gill.size=b}                0.1033973  0.9130435 0.1132447 1.3217329   840
[2563] {cap.shape=x,                                                                                              
        cap.color=g}                => {ring.number=o}              0.1068439  0.9434783 0.1132447 1.0236134   868
[2564] {cap.color=g,                                                                                              
        ring.number=o}              => {cap.shape=x}                0.1068439  0.5142180 0.2077794 1.1426442   868
[2565] {cap.shape=x,                                                                                              
        cap.color=g}                => {gill.attachment=f}          0.1132447  1.0000000 0.1132447 1.0265353   920
[2566] {cap.color=g,                                                                                              
        gill.attachment=f}          => {cap.shape=x}                0.1132447  0.5000000 0.2264894 1.1110503   920
[2567] {cap.shape=x,                                                                                              
        cap.color=g}                => {veil.color=w}               0.1132447  1.0000000 0.1132447 1.0252398   920
[2568] {cap.color=g,                                                                                              
        veil.color=w}               => {cap.shape=x}                0.1132447  0.5000000 0.2264894 1.1110503   920
[2569] {cap.color=g,                                                                                              
        stalk.root=b}               => {gill.size=b}                0.1634663  0.9540230 0.1713442 1.3810554  1328
[2570] {cap.color=g,                                                                                              
        gill.size=b}                => {stalk.root=b}               0.1634663  0.7685185 0.2127031 1.6534546  1328
[2571] {cap.color=g,                                                                                              
        stalk.root=b}               => {gill.spacing=c}             0.1674052  0.9770115 0.1713442 1.1651852  1360
[2572] {cap.color=g,                                                                                              
        gill.spacing=c}             => {stalk.root=b}               0.1674052  0.9659091 0.1733136 2.0781370  1360
[2573] {cap.color=g,                                                                                              
        stalk.root=b}               => {ring.number=o}              0.1703594  0.9942529 0.1713442 1.0787006  1384
[2574] {cap.color=g,                                                                                              
        ring.number=o}              => {stalk.root=b}               0.1703594  0.8199052 0.2077794 1.7640122  1384
[2575] {cap.color=g,                                                                                              
        stalk.root=b}               => {gill.attachment=f}          0.1713442  1.0000000 0.1713442 1.0265353  1392
[2576] {cap.color=g,                                                                                              
        gill.attachment=f}          => {stalk.root=b}               0.1713442  0.7565217 0.2264894 1.6276437  1392
[2577] {cap.color=g,                                                                                              
        stalk.root=b}               => {veil.color=w}               0.1713442  1.0000000 0.1713442 1.0252398  1392
[2578] {cap.color=g,                                                                                              
        veil.color=w}               => {stalk.root=b}               0.1713442  0.7565217 0.2264894 1.6276437  1392
[2579] {cap.color=g,                                                                                              
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1004431  0.8717949 0.1152142 1.4348585   816
[2580] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=p}                0.1004431  0.8644068 0.1161989 1.7697683   816
[2581] {cap.color=g,                                                                                              
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1004431  0.8717949 0.1152142 1.3683272   816
[2582] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=p}                0.1004431  0.8644068 0.1161989 1.7697683   816
[2583] {cap.color=g,                                                                                              
        ring.type=p}                => {gill.size=b}                0.1014279  0.8803419 0.1152142 1.2743937   824
[2584] {cap.color=g,                                                                                              
        ring.type=p}                => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[2585] {cap.color=g,                                                                                              
        gill.attachment=f}          => {ring.type=p}                0.1152142  0.5086957 0.2264894 1.0414928   936
[2586] {cap.color=g,                                                                                              
        ring.type=p}                => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[2587] {cap.color=g,                                                                                              
        veil.color=w}               => {ring.type=p}                0.1152142  0.5086957 0.2264894 1.0414928   936
[2588] {class=e,                                                                                                  
        cap.color=g}                => {stalk.shape=t}              0.1024126  0.8062016 0.1270310 1.4213501   832
[2589] {cap.color=g,                                                                                              
        stalk.shape=t}              => {class=e}                    0.1024126  0.8965517 0.1142294 1.7308903   832
[2590] {class=e,                                                                                                  
        cap.color=g}                => {stalk.surface.below.ring=s} 0.1024126  0.8062016 0.1270310 1.3269006   832
[2591] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {class=e}                    0.1024126  0.8813559 0.1161989 1.7015531   832
[2592] {class=e,                                                                                                  
        cap.color=g}                => {stalk.surface.above.ring=s} 0.1024126  0.8062016 0.1270310 1.2653751   832
[2593] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {class=e}                    0.1024126  0.8813559 0.1161989 1.7015531   832
[2594] {class=e,                                                                                                  
        cap.color=g}                => {gill.size=b}                0.1211226  0.9534884 0.1270310 1.3802815   984
[2595] {cap.color=g,                                                                                              
        gill.size=b}                => {class=e}                    0.1211226  0.5694444 0.2127031 1.0993742   984
[2596] {class=e,                                                                                                  
        cap.color=g}                => {ring.number=o}              0.1083210  0.8527132 0.1270310 0.9251391   880
[2597] {cap.color=g,                                                                                              
        ring.number=o}              => {class=e}                    0.1083210  0.5213270 0.2077794 1.0064783   880
[2598] {class=e,                                                                                                  
        cap.color=g}                => {gill.attachment=f}          0.1270310  1.0000000 0.1270310 1.0265353  1032
[2599] {cap.color=g,                                                                                              
        gill.attachment=f}          => {class=e}                    0.1270310  0.5608696 0.2264894 1.0828195  1032
[2600] {class=e,                                                                                                  
        cap.color=g}                => {veil.color=w}               0.1270310  1.0000000 0.1270310 1.0252398  1032
[2601] {cap.color=g,                                                                                              
        veil.color=w}               => {class=e}                    0.1270310  0.5608696 0.2264894 1.0828195  1032
[2602] {cap.color=g,                                                                                              
        stalk.shape=t}              => {gill.size=b}                0.1142294  1.0000000 0.1142294 1.4476123   928
[2603] {cap.color=g,                                                                                              
        gill.size=b}                => {stalk.shape=t}              0.1142294  0.5370370 0.2127031 0.9468075   928
[2604] {cap.color=g,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.1142294  1.0000000 0.1142294 1.0849359   928
[2605] {cap.color=g,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.1142294  0.5497630 0.2077794 0.9692437   928
[2606] {cap.color=g,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.1142294  1.0000000 0.1142294 1.0265353   928
[2607] {cap.color=g,                                                                                              
        gill.attachment=f}          => {stalk.shape=t}              0.1142294  0.5043478 0.2264894 0.8891757   928
[2608] {cap.color=g,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.1142294  1.0000000 0.1142294 1.0252398   928
[2609] {cap.color=g,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.1142294  0.5043478 0.2264894 0.8891757   928
[2610] {cap.color=g,                                                                                              
        bruises=f}                  => {gill.size=b}                0.1290005  0.9034483 0.1427868 1.3078428  1048
[2611] {cap.color=g,                                                                                              
        gill.size=b}                => {bruises=f}                  0.1290005  0.6064815 0.2127031 1.0377118  1048
[2612] {cap.color=g,                                                                                              
        bruises=f}                  => {ring.number=o}              0.1250615  0.8758621 0.1427868 0.9502542  1016
[2613] {cap.color=g,                                                                                              
        ring.number=o}              => {bruises=f}                  0.1250615  0.6018957 0.2077794 1.0298654  1016
[2614] {cap.color=g,                                                                                              
        bruises=f}                  => {gill.attachment=f}          0.1427868  1.0000000 0.1427868 1.0265353  1160
[2615] {cap.color=g,                                                                                              
        gill.attachment=f}          => {bruises=f}                  0.1427868  0.6304348 0.2264894 1.0786968  1160
[2616] {cap.color=g,                                                                                              
        bruises=f}                  => {veil.color=w}               0.1427868  1.0000000 0.1427868 1.0252398  1160
[2617] {cap.color=g,                                                                                              
        veil.color=w}               => {bruises=f}                  0.1427868  0.6304348 0.2264894 1.0786968  1160
[2618] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1009355  0.8686441 0.1161989 1.3633818   820
[2619] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1009355  0.8686441 0.1161989 1.4296727   820
[2620] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {gill.size=b}                0.1024126  0.8813559 0.1161989 1.2758617   832
[2621] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.1063516  0.9152542 0.1161989 0.9929922   864
[2622] {cap.color=g,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1063516  0.5118483 0.2077794 0.8424343   864
[2623] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1161989  1.0000000 0.1161989 1.0265353   944
[2624] {cap.color=g,                                                                                              
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.1161989  0.5130435 0.2264894 0.8444014   944
[2625] {cap.color=g,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.1161989  1.0000000 0.1161989 1.0252398   944
[2626] {cap.color=g,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1161989  0.5130435 0.2264894 0.8444014   944
[2627] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {gill.size=b}                0.1024126  0.8813559 0.1161989 1.2758617   832
[2628] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.1063516  0.9152542 0.1161989 0.9929922   864
[2629] {cap.color=g,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1063516  0.5118483 0.2077794 0.8033725   864
[2630] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1161989  1.0000000 0.1161989 1.0265353   944
[2631] {cap.color=g,                                                                                              
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.1161989  0.5130435 0.2264894 0.8052483   944
[2632] {cap.color=g,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.1161989  1.0000000 0.1161989 1.0252398   944
[2633] {cap.color=g,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1161989  0.5130435 0.2264894 0.8052483   944
[2634] {cap.color=g,                                                                                              
        gill.size=b}                => {gill.spacing=c}             0.1634663  0.7685185 0.2127031 0.9165362  1328
[2635] {cap.color=g,                                                                                              
        gill.spacing=c}             => {gill.size=b}                0.1634663  0.9431818 0.1733136 1.3653616  1328
[2636] {cap.color=g,                                                                                              
        gill.size=b}                => {ring.number=o}              0.1939931  0.9120370 0.2127031 0.9895017  1576
[2637] {cap.color=g,                                                                                              
        ring.number=o}              => {gill.size=b}                0.1939931  0.9336493 0.2077794 1.3515622  1576
[2638] {cap.color=g,                                                                                              
        gill.size=b}                => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[2639] {cap.color=g,                                                                                              
        gill.attachment=f}          => {gill.size=b}                0.2127031  0.9391304 0.2264894 1.3594967  1728
[2640] {cap.color=g,                                                                                              
        gill.size=b}                => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[2641] {cap.color=g,                                                                                              
        veil.color=w}               => {gill.size=b}                0.2127031  0.9391304 0.2264894 1.3594967  1728
[2642] {cap.color=g,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.1723289  0.9943182 0.1733136 1.0787715  1400
[2643] {cap.color=g,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.1723289  0.8293839 0.2077794 0.9891243  1400
[2644] {cap.color=g,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.1733136  1.0000000 0.1733136 1.0265353  1408
[2645] {cap.color=g,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.1733136  0.7652174 0.2264894 0.9125992  1408
[2646] {cap.color=g,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.1733136  1.0000000 0.1733136 1.0252398  1408
[2647] {cap.color=g,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.1733136  0.7652174 0.2264894 0.9125992  1408
[2648] {cap.color=g,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.2077794  1.0000000 0.2077794 1.0265353  1688
[2649] {cap.color=g,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.2077794  0.9173913 0.2264894 0.9953108  1688
[2650] {cap.color=g,                                                                                              
        ring.number=o}              => {veil.color=w}               0.2077794  1.0000000 0.2077794 1.0252398  1688
[2651] {cap.color=g,                                                                                              
        veil.color=w}               => {ring.number=o}              0.2077794  0.9173913 0.2264894 0.9953108  1688
[2652] {cap.color=g,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.2264894  1.0000000 0.2264894 1.0252398  1840
[2653] {cap.color=g,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.2264894  1.0000000 0.2264894 1.0265353  1840
[2654] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2655] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {stalk.surface.below.ring=k} 0.1063516  0.6666667 0.1595273 2.3506944   864
[2656] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2657] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {stalk.surface.below.ring=k} 0.1063516  0.6666667 0.1595273 2.3506944   864
[2658] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2659] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2660] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2661] {stalk.surface.below.ring=k,                                                                               
        stalk.color.below.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2662] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2663] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {stalk.surface.above.ring=k} 0.1063516  0.6666667 0.1595273 2.2833052   864
[2664] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2665] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {stalk.surface.above.ring=k} 0.1063516  0.6666667 0.1595273 2.2833052   864
[2666] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2667] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2668] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2669] {stalk.surface.above.ring=k,                                                                               
        stalk.color.below.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2670] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2671] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2672] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2673] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2674] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2675] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2676] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2677] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  0.6666667 0.1595273 2.2680067   864
[2678] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2679] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {spore.print.color=w}        0.1063516  0.6315789 0.1683900 2.1486379   864
[2680] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2681] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  0.6000000 0.1772526 2.0412060   864
[2682] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2683] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2684] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {spore.print.color=w}        0.1063516  0.6666667 0.1595273 2.2680067   864
[2685] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2686] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2687] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2688] {stalk.color.below.ring=p,                                                                                 
        spore.print.color=w}        => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2689] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2690] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2691] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2692] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2693] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2694] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {stalk.root=?}               0.1063516  0.6666667 0.1595273 2.1838710   864
[2695] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2696] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {stalk.root=?}               0.1063516  0.6315789 0.1683900 2.0689304   864
[2697] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2698] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {stalk.root=?}               0.1063516  0.6000000 0.1772526 1.9654839   864
[2699] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.color.below.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2700] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2701] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {stalk.root=?}               0.1063516  0.6666667 0.1595273 2.1838710   864
[2702] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2703] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2704] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2705] {stalk.root=?,                                                                                             
        stalk.color.below.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2706] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2707] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2708] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2709] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {gill.size=n}                0.1063516  0.6666667 0.1595273 2.1560510   864
[2710] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2711] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {gill.size=n}                0.1063516  0.6315789 0.1683900 2.0425746   864
[2712] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2713] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {gill.size=n}                0.1063516  0.6000000 0.1772526 1.9404459   864
[2714] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2715] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {gill.size=n}                0.1063516  0.6666667 0.1595273 2.1560510   864
[2716] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2717] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2718] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2719] {gill.size=n,                                                                                              
        stalk.color.below.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2720] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2721] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  0.6666667 0.1595273 1.9510086   864
[2722] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2723] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {ring.type=e}                0.1063516  0.6315789 0.1683900 1.8483240   864
[2724] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2725] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  0.6000000 0.1772526 1.7559078   864
[2726] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2727] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {ring.type=e}                0.1063516  0.6666667 0.1595273 1.9510086   864
[2728] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2729] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2730] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2731] {stalk.color.below.ring=p,                                                                                 
        ring.type=e}                => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2732] {stalk.color.below.ring=p,                                                                                 
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.8571429 0.1240768 1.5111607   864
[2733] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {habitat=d}                  0.1063516  0.6000000 0.1772526 1.5484117   864
[2734] {stalk.color.below.ring=p,                                                                                 
        habitat=d}                  => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2735] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2736] {stalk.color.below.ring=p,                                                                                 
        habitat=d}                  => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2737] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2738] {stalk.color.below.ring=p,                                                                                 
        habitat=d}                  => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2739] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2740] {stalk.color.below.ring=p,                                                                                 
        habitat=d}                  => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2741] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2742] {cap.surface=y,                                                                                            
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1152142  1.0000000 0.1152142 1.1926013   936
[2743] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2744] {cap.surface=y,                                                                                            
        stalk.color.below.ring=p}   => {ring.number=o}              0.1152142  1.0000000 0.1152142 1.0849359   936
[2745] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2746] {cap.surface=y,                                                                                            
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[2747] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2748] {cap.surface=y,                                                                                            
        stalk.color.below.ring=p}   => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[2749] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2750] {stalk.root=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.size=b}                0.1240768  1.0000000 0.1240768 1.4476123  1008
[2751] {gill.size=b,                                                                                              
        stalk.color.below.ring=p}   => {stalk.root=b}               0.1240768  1.0000000 0.1240768 2.1514831  1008
[2752] {stalk.root=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2753] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2754] {stalk.root=b,                                                                                             
        stalk.color.below.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2755] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2756] {stalk.root=b,                                                                                             
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2757] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2758] {stalk.root=b,                                                                                             
        stalk.color.below.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2759] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2760] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {population=v}               0.1329394  0.8333333 0.1595273 1.6757426  1080
[2761] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {class=p}                    0.1329394  0.7894737 0.1683900 1.6378152  1080
[2762] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[2763] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {class=p}                    0.1063516  0.6000000 0.1772526 1.2447395   864
[2764] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[2765] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[2766] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[2767] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2768] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[2769] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2770] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[2771] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2772] {class=p,                                                                                                  
        stalk.color.below.ring=p}   => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[2773] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2774] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {stalk.shape=t}              0.1418021  0.8421053 0.1683900 1.4846491  1152
[2775] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {population=v}               0.1418021  0.8000000 0.1772526 1.6087129  1152
[2776] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {bruises=f}                  0.1329394  0.7894737 0.1683900 1.3508181  1080
[2777] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {population=v}               0.1329394  0.8333333 0.1595273 1.6757426  1080
[2778] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {gill.spacing=c}             0.1683900  1.0000000 0.1683900 1.1926013  1368
[2779] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2780] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {ring.number=o}              0.1683900  1.0000000 0.1683900 1.0849359  1368
[2781] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2782] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {gill.attachment=f}          0.1683900  1.0000000 0.1683900 1.0265353  1368
[2783] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2784] {stalk.color.below.ring=p,                                                                                 
        population=v}               => {veil.color=w}               0.1683900  1.0000000 0.1683900 1.0252398  1368
[2785] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2786] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {bruises=f}                  0.1063516  0.6000000 0.1772526 1.0266217   864
[2787] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[2788] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.7000000 0.1772526 1.1521070  1008
[2789] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1240768  1.0000000 0.1240768 1.7630208  1008
[2790] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.7000000 0.1772526 1.0986862  1008
[2791] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1240768  1.0000000 0.1240768 1.7630208  1008
[2792] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1772526  1.0000000 0.1772526 1.1926013  1440
[2793] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2794] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {ring.number=o}              0.1772526  1.0000000 0.1772526 1.0849359  1440
[2795] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2796] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[2797] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2798] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=p}   => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[2799] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2800] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[2801] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2802] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[2803] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2804] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[2805] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2806] {bruises=f,                                                                                                
        stalk.color.below.ring=p}   => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[2807] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2808] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2809] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[2810] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2811] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[2812] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2813] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[2814] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2815] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[2816] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2817] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[2818] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2819] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[2820] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2821] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[2822] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2823] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[2824] {gill.size=b,                                                                                              
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2825] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[2826] {gill.size=b,                                                                                              
        stalk.color.below.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2827] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[2828] {gill.size=b,                                                                                              
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2829] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[2830] {gill.size=b,                                                                                              
        stalk.color.below.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2831] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[2832] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[2833] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[2834] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[2835] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[2836] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[2837] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[2838] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[2839] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[2840] {stalk.color.below.ring=p,                                                                                 
        ring.number=o}              => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[2841] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[2842] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[2843] {stalk.color.below.ring=p,                                                                                 
        veil.color=w}               => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[2844] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2845] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {stalk.surface.below.ring=k} 0.1063516  0.6666667 0.1595273 2.3506944   864
[2846] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2847] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {stalk.surface.below.ring=k} 0.1063516  0.6666667 0.1595273 2.3506944   864
[2848] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2849] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2850] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2851] {stalk.surface.below.ring=k,                                                                               
        stalk.color.above.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2852] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2853] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {stalk.surface.above.ring=k} 0.1063516  0.6666667 0.1595273 2.2833052   864
[2854] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2855] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {stalk.surface.above.ring=k} 0.1063516  0.6666667 0.1595273 2.2833052   864
[2856] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2857] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2858] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2859] {stalk.surface.above.ring=k,                                                                               
        stalk.color.above.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2860] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2861] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2862] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2863] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2864] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2865] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[2866] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2867] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  0.6666667 0.1595273 2.2680067   864
[2868] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2869] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {spore.print.color=w}        0.1063516  0.6315789 0.1683900 2.1486379   864
[2870] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2871] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  0.6000000 0.1772526 2.0412060   864
[2872] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2873] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2874] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {spore.print.color=w}        0.1063516  0.6666667 0.1595273 2.2680067   864
[2875] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2876] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2877] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2878] {stalk.color.above.ring=p,                                                                                 
        spore.print.color=w}        => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2879] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2880] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2881] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2882] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[2883] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2884] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {stalk.root=?}               0.1063516  0.6666667 0.1595273 2.1838710   864
[2885] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2886] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {stalk.root=?}               0.1063516  0.6315789 0.1683900 2.0689304   864
[2887] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2888] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {stalk.root=?}               0.1063516  0.6000000 0.1772526 1.9654839   864
[2889] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.color.above.ring=p}   0.1063516  0.5000000 0.2127031 2.1698718   864
[2890] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2891] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {stalk.root=?}               0.1063516  0.6666667 0.1595273 2.1838710   864
[2892] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2893] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2894] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2895] {stalk.root=?,                                                                                             
        stalk.color.above.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2896] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[2897] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[2898] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2899] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {gill.size=n}                0.1063516  0.6666667 0.1595273 2.1560510   864
[2900] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2901] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {gill.size=n}                0.1063516  0.6315789 0.1683900 2.0425746   864
[2902] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2903] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {gill.size=n}                0.1063516  0.6000000 0.1772526 1.9404459   864
[2904] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2905] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {gill.size=n}                0.1063516  0.6666667 0.1595273 2.1560510   864
[2906] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2907] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2908] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2909] {gill.size=n,                                                                                              
        stalk.color.above.ring=p}   => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2910] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[2911] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  0.6666667 0.1595273 1.9510086   864
[2912] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[2913] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {ring.type=e}                0.1063516  0.6315789 0.1683900 1.8483240   864
[2914] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[2915] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  0.6000000 0.1772526 1.7559078   864
[2916] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[2917] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {ring.type=e}                0.1063516  0.6666667 0.1595273 1.9510086   864
[2918] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[2919] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[2920] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[2921] {stalk.color.above.ring=p,                                                                                 
        ring.type=e}                => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[2922] {stalk.color.above.ring=p,                                                                                 
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.8571429 0.1240768 1.5111607   864
[2923] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {habitat=d}                  0.1063516  0.6000000 0.1772526 1.5484117   864
[2924] {stalk.color.above.ring=p,                                                                                 
        habitat=d}                  => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2925] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2926] {stalk.color.above.ring=p,                                                                                 
        habitat=d}                  => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2927] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2928] {stalk.color.above.ring=p,                                                                                 
        habitat=d}                  => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2929] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2930] {stalk.color.above.ring=p,                                                                                 
        habitat=d}                  => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2931] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {habitat=d}                  0.1240768  0.5384615 0.2304284 1.3896002  1008
[2932] {cap.surface=y,                                                                                            
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1152142  1.0000000 0.1152142 1.1926013   936
[2933] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2934] {cap.surface=y,                                                                                            
        stalk.color.above.ring=p}   => {ring.number=o}              0.1152142  1.0000000 0.1152142 1.0849359   936
[2935] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2936] {cap.surface=y,                                                                                            
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[2937] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2938] {cap.surface=y,                                                                                            
        stalk.color.above.ring=p}   => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[2939] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[2940] {stalk.root=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.size=b}                0.1240768  1.0000000 0.1240768 1.4476123  1008
[2941] {gill.size=b,                                                                                              
        stalk.color.above.ring=p}   => {stalk.root=b}               0.1240768  1.0000000 0.1240768 2.1514831  1008
[2942] {stalk.root=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2943] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2944] {stalk.root=b,                                                                                             
        stalk.color.above.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[2945] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2946] {stalk.root=b,                                                                                             
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[2947] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2948] {stalk.root=b,                                                                                             
        stalk.color.above.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[2949] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {stalk.root=b}               0.1240768  0.5384615 0.2304284 1.1584909  1008
[2950] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {population=v}               0.1329394  0.8333333 0.1595273 1.6757426  1080
[2951] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {class=p}                    0.1329394  0.7894737 0.1683900 1.6378152  1080
[2952] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[2953] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {class=p}                    0.1063516  0.6000000 0.1772526 1.2447395   864
[2954] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[2955] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[2956] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[2957] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2958] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[2959] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2960] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[2961] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2962] {class=p,                                                                                                  
        stalk.color.above.ring=p}   => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[2963] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {class=p}                    0.1595273  0.6923077 0.2304284 1.4362379  1296
[2964] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {stalk.shape=t}              0.1418021  0.8421053 0.1683900 1.4846491  1152
[2965] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {population=v}               0.1418021  0.8000000 0.1772526 1.6087129  1152
[2966] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {bruises=f}                  0.1329394  0.7894737 0.1683900 1.3508181  1080
[2967] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {population=v}               0.1329394  0.8333333 0.1595273 1.6757426  1080
[2968] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {gill.spacing=c}             0.1683900  1.0000000 0.1683900 1.1926013  1368
[2969] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2970] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {ring.number=o}              0.1683900  1.0000000 0.1683900 1.0849359  1368
[2971] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2972] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {gill.attachment=f}          0.1683900  1.0000000 0.1683900 1.0265353  1368
[2973] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2974] {stalk.color.above.ring=p,                                                                                 
        population=v}               => {veil.color=w}               0.1683900  1.0000000 0.1683900 1.0252398  1368
[2975] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {population=v}               0.1683900  0.7307692 0.2304284 1.4694973  1368
[2976] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {bruises=f}                  0.1063516  0.6000000 0.1772526 1.0266217   864
[2977] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[2978] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.7000000 0.1772526 1.1521070  1008
[2979] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1240768  1.0000000 0.1240768 1.7630208  1008
[2980] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.7000000 0.1772526 1.0986862  1008
[2981] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1240768  1.0000000 0.1240768 1.7630208  1008
[2982] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1772526  1.0000000 0.1772526 1.1926013  1440
[2983] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2984] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {ring.number=o}              0.1772526  1.0000000 0.1772526 1.0849359  1440
[2985] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2986] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[2987] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2988] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=p}   => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[2989] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {stalk.shape=t}              0.1772526  0.7692308 0.2304284 1.3561699  1440
[2990] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[2991] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2992] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[2993] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2994] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[2995] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2996] {bruises=f,                                                                                                
        stalk.color.above.ring=p}   => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[2997] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {bruises=f}                  0.1595273  0.6923077 0.2304284 1.1845635  1296
[2998] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[2999] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[3000] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[3001] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[3002] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3003] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[3004] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3005] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1240768  0.5384615 0.2304284 0.8862361  1008
[3006] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[3007] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[3008] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[3009] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[3010] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3011] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[3012] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3013] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1240768  0.5384615 0.2304284 0.8451433  1008
[3014] {gill.size=b,                                                                                              
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.1240768  1.0000000 0.1240768 1.1926013  1008
[3015] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[3016] {gill.size=b,                                                                                              
        stalk.color.above.ring=p}   => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[3017] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[3018] {gill.size=b,                                                                                              
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3019] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[3020] {gill.size=b,                                                                                              
        stalk.color.above.ring=p}   => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3021] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {gill.size=b}                0.1240768  0.5384615 0.2304284 0.7794835  1008
[3022] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3023] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[3024] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3025] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[3026] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3027] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[3028] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3029] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3030] {stalk.color.above.ring=p,                                                                                 
        ring.number=o}              => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3031] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3032] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=p}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3033] {stalk.color.above.ring=p,                                                                                 
        veil.color=w}               => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3034] {spore.print.color=k,                                                                                      
        habitat=d}                  => {bruises=t}                  0.1063516  0.9000000 0.1181684 2.1657583   864
[3035] {bruises=t,                                                                                                
        spore.print.color=k}        => {habitat=d}                  0.1063516  0.6428571 0.1654357 1.6590125   864
[3036] {spore.print.color=k,                                                                                      
        habitat=d}                  => {odor=n}                     0.1063516  0.9000000 0.1181684 2.0724490   864
[3037] {odor=n,                                                                                                   
        spore.print.color=k}        => {habitat=d}                  0.1063516  0.6666667 0.1595273 1.7204574   864
[3038] {spore.print.color=k,                                                                                      
        habitat=d}                  => {stalk.root=b}               0.1181684  1.0000000 0.1181684 2.1514831   960
[3039] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {habitat=d}                  0.1181684  1.0000000 0.1181684 2.5806861   960
[3040] {spore.print.color=k,                                                                                      
        habitat=d}                  => {ring.type=p}                0.1181684  1.0000000 0.1181684 2.0473790   960
[3041] {ring.type=p,                                                                                              
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.6451613 0.1831610 1.6649588   960
[3042] {spore.print.color=k,                                                                                      
        habitat=d}                  => {class=e}                    0.1063516  0.9000000 0.1181684 1.7375475   864
[3043] {class=e,                                                                                                  
        spore.print.color=k}        => {habitat=d}                  0.1063516  0.5242718 0.2028557 1.3529811   864
[3044] {spore.print.color=k,                                                                                      
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.9000000 0.1181684 1.5867188   864
[3045] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {habitat=d}                  0.1063516  0.6923077 0.1536189 1.7866289   864
[3046] {spore.print.color=k,                                                                                      
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1181684  1.0000000 0.1181684 1.6458671   960
[3047] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.6060606 0.1949778 1.5640522   960
[3048] {spore.print.color=k,                                                                                      
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1181684  1.0000000 0.1181684 1.5695518   960
[3049] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.5714286 0.2067947 1.4746778   960
[3050] {spore.print.color=k,                                                                                      
        habitat=d}                  => {gill.size=b}                0.1063516  0.9000000 0.1181684 1.3028510   864
[3051] {gill.size=b,                                                                                              
        spore.print.color=k}        => {habitat=d}                  0.1063516  0.5400000 0.1969473 1.3935705   864
[3052] {spore.print.color=k,                                                                                      
        habitat=d}                  => {gill.spacing=c}             0.1122600  0.9500000 0.1181684 1.1329712   912
[3053] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {habitat=d}                  0.1122600  0.6333333 0.1772526 1.6344346   912
[3054] {spore.print.color=k,                                                                                      
        habitat=d}                  => {ring.number=o}              0.1181684  1.0000000 0.1181684 1.0849359   960
[3055] {ring.number=o,                                                                                            
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.5128205 0.2304284 1.3234288   960
[3056] {spore.print.color=k,                                                                                      
        habitat=d}                  => {gill.attachment=f}          0.1181684  1.0000000 0.1181684 1.0265353   960
[3057] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.5128205 0.2304284 1.3234288   960
[3058] {spore.print.color=k,                                                                                      
        habitat=d}                  => {veil.color=w}               0.1181684  1.0000000 0.1181684 1.0252398   960
[3059] {veil.color=w,                                                                                             
        spore.print.color=k}        => {habitat=d}                  0.1181684  0.5128205 0.2304284 1.3234288   960
[3060] {bruises=t,                                                                                                
        spore.print.color=k}        => {odor=n}                     0.1063516  0.6428571 0.1654357 1.4803207   864
[3061] {odor=n,                                                                                                   
        spore.print.color=k}        => {bruises=t}                  0.1063516  0.6666667 0.1595273 1.6042654   864
[3062] {bruises=t,                                                                                                
        spore.print.color=k}        => {stalk.root=b}               0.1063516  0.6428571 0.1654357 1.3830962   864
[3063] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {bruises=t}                  0.1063516  0.9000000 0.1181684 2.1657583   864
[3064] {bruises=t,                                                                                                
        spore.print.color=k}        => {ring.type=p}                0.1654357  1.0000000 0.1654357 2.0473790  1344
[3065] {ring.type=p,                                                                                              
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.9032258 0.1831610 2.1735209  1344
[3066] {bruises=t,                                                                                                
        spore.print.color=k}        => {class=e}                    0.1496800  0.9047619 0.1654357 1.7467409  1216
[3067] {class=e,                                                                                                  
        spore.print.color=k}        => {bruises=t}                  0.1496800  0.7378641 0.2028557 1.7755947  1216
[3068] {bruises=t,                                                                                                
        spore.print.color=k}        => {stalk.shape=t}              0.1063516  0.6428571 0.1654357 1.1333705   864
[3069] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {bruises=t}                  0.1063516  0.6923077 0.1536189 1.6659679   864
[3070] {bruises=t,                                                                                                
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1536189  0.9285714 0.1654357 1.5283052  1248
[3071] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {bruises=t}                  0.1536189  0.7878788 0.1949778 1.8959500  1248
[3072] {bruises=t,                                                                                                
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1654357  1.0000000 0.1654357 1.5695518  1344
[3073] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.8000000 0.2067947 1.9251185  1344
[3074] {bruises=t,                                                                                                
        spore.print.color=k}        => {gill.size=b}                0.1496800  0.9047619 0.1654357 1.3097444  1216
[3075] {gill.size=b,                                                                                              
        spore.print.color=k}        => {bruises=t}                  0.1496800  0.7600000 0.1969473 1.8288626  1216
[3076] {bruises=t,                                                                                                
        spore.print.color=k}        => {gill.spacing=c}             0.1654357  1.0000000 0.1654357 1.1926013  1344
[3077] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.9333333 0.1772526 2.2459716  1344
[3078] {bruises=t,                                                                                                
        spore.print.color=k}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[3079] {ring.number=o,                                                                                            
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.7179487 0.2304284 1.7276704  1344
[3080] {bruises=t,                                                                                                
        spore.print.color=k}        => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[3081] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.7179487 0.2304284 1.7276704  1344
[3082] {bruises=t,                                                                                                
        spore.print.color=k}        => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[3083] {veil.color=w,                                                                                             
        spore.print.color=k}        => {bruises=t}                  0.1654357  0.7179487 0.2304284 1.7276704  1344
[3084] {odor=n,                                                                                                   
        spore.print.color=k}        => {stalk.root=b}               0.1063516  0.6666667 0.1595273 1.4343220   864
[3085] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {odor=n}                     0.1063516  0.9000000 0.1181684 2.0724490   864
[3086] {odor=n,                                                                                                   
        spore.print.color=k}        => {ring.type=p}                0.1122600  0.7037037 0.1595273 1.4407482   912
[3087] {ring.type=p,                                                                                              
        spore.print.color=k}        => {odor=n}                     0.1122600  0.6129032 0.1831610 1.4113452   912
[3088] {odor=n,                                                                                                   
        spore.print.color=k}        => {class=e}                    0.1595273  1.0000000 0.1595273 1.9306084  1296
[3089] {class=e,                                                                                                  
        spore.print.color=k}        => {odor=n}                     0.1595273  0.7864078 0.2028557 1.8108777  1296
[3090] {odor=n,                                                                                                   
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.9629630 0.1595273 1.6977238  1248
[3091] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {odor=n}                     0.1536189  1.0000000 0.1536189 2.3027211  1248
[3092] {odor=n,                                                                                                   
        stalk.shape=t}              => {spore.print.color=k}        0.1536189  0.5000000 0.3072378 2.1698718  1248
[3093] {odor=n,                                                                                                   
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1358936  0.8518519 0.1595273 1.4020349  1104
[3094] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {odor=n}                     0.1358936  0.6969697 0.1949778 1.6049268  1104
[3095] {odor=n,                                                                                                   
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1358936  0.8518519 0.1595273 1.3370256  1104
[3096] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {odor=n}                     0.1358936  0.6571429 0.2067947 1.5132167  1104
[3097] {odor=n,                                                                                                   
        spore.print.color=k}        => {gill.size=b}                0.1536189  0.9629630 0.1595273 1.3939970  1248
[3098] {gill.size=b,                                                                                              
        spore.print.color=k}        => {odor=n}                     0.1536189  0.7800000 0.1969473 1.7961224  1248
[3099] {odor=n,                                                                                                   
        spore.print.color=k}        => {gill.spacing=c}             0.1122600  0.7037037 0.1595273 0.8392379   912
[3100] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {odor=n}                     0.1122600  0.6333333 0.1772526 1.4583900   912
[3101] {odor=n,                                                                                                   
        spore.print.color=k}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[3102] {ring.number=o,                                                                                            
        spore.print.color=k}        => {odor=n}                     0.1595273  0.6923077 0.2304284 1.5941915  1296
[3103] {odor=n,                                                                                                   
        spore.print.color=k}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[3104] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {odor=n}                     0.1595273  0.6923077 0.2304284 1.5941915  1296
[3105] {odor=n,                                                                                                   
        spore.print.color=k}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[3106] {veil.color=w,                                                                                             
        spore.print.color=k}        => {odor=n}                     0.1595273  0.6923077 0.2304284 1.5941915  1296
[3107] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {class=e}                    0.1004431  0.8360656 0.1201379 1.6141152   816
[3108] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1024126  0.8524590 0.1201379 1.4030342   832
[3109] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {cap.shape=x}                0.1024126  0.5252525 0.1949778 1.1671640   832
[3110] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1083210  0.9016393 0.1201379 1.4151696   880
[3111] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {cap.shape=x}                0.1083210  0.5238095 0.2067947 1.1639575   880
[3112] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {ring.number=o}              0.1201379  1.0000000 0.1201379 1.0849359   976
[3113] {ring.number=o,                                                                                            
        spore.print.color=k}        => {cap.shape=x}                0.1201379  0.5213675 0.2304284 1.1585311   976
[3114] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {gill.attachment=f}          0.1201379  1.0000000 0.1201379 1.0265353   976
[3115] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {cap.shape=x}                0.1201379  0.5213675 0.2304284 1.1585311   976
[3116] {cap.shape=x,                                                                                              
        spore.print.color=k}        => {veil.color=w}               0.1201379  1.0000000 0.1201379 1.0252398   976
[3117] {veil.color=w,                                                                                             
        spore.print.color=k}        => {cap.shape=x}                0.1201379  0.5213675 0.2304284 1.1585311   976
[3118] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {ring.type=p}                0.1181684  1.0000000 0.1181684 2.0473790   960
[3119] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.6451613 0.1831610 1.3880536   960
[3120] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {class=e}                    0.1063516  0.9000000 0.1181684 1.7375475   864
[3121] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.root=b}               0.1063516  0.5242718 0.2028557 1.1279620   864
[3122] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {stalk.shape=t}              0.1063516  0.9000000 0.1181684 1.5867188   864
[3123] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {stalk.root=b}               0.1063516  0.6923077 0.1536189 1.4894883   864
[3124] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1181684  1.0000000 0.1181684 1.6458671   960
[3125] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.6060606 0.1949778 1.3039291   960
[3126] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1181684  1.0000000 0.1181684 1.5695518   960
[3127] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.5714286 0.2067947 1.2294189   960
[3128] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {gill.size=b}                0.1063516  0.9000000 0.1181684 1.3028510   864
[3129] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.root=b}               0.1063516  0.5400000 0.1969473 1.1618008   864
[3130] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {gill.spacing=c}             0.1122600  0.9500000 0.1181684 1.1329712   912
[3131] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.root=b}               0.1122600  0.6333333 0.1772526 1.3626059   912
[3132] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {ring.number=o}              0.1181684  1.0000000 0.1181684 1.0849359   960
[3133] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.5128205 0.2304284 1.1033246   960
[3134] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {gill.attachment=f}          0.1181684  1.0000000 0.1181684 1.0265353   960
[3135] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.5128205 0.2304284 1.1033246   960
[3136] {stalk.root=b,                                                                                             
        spore.print.color=k}        => {veil.color=w}               0.1181684  1.0000000 0.1181684 1.0252398   960
[3137] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.root=b}               0.1181684  0.5128205 0.2304284 1.1033246   960
[3138] {ring.type=p,                                                                                              
        spore.print.color=k}        => {class=e}                    0.1555884  0.8494624 0.1831610 1.6399791  1264
[3139] {class=e,                                                                                                  
        spore.print.color=k}        => {ring.type=p}                0.1555884  0.7669903 0.2028557 1.5703198  1264
[3140] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1122600  0.6129032 0.1831610 1.1357723   912
[3141] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {ring.type=p}                0.1122600  0.7037037 0.1595273 1.4407482   912
[3142] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1122600  0.6129032 0.1831610 1.1154180   912
[3143] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {ring.type=p}                0.1122600  0.7037037 0.1595273 1.4407482   912
[3144] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.shape=t}              0.1063516  0.5806452 0.1831610 1.0236895   864
[3145] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {ring.type=p}                0.1063516  0.6923077 0.1536189 1.4174163   864
[3146] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1713442  0.9354839 0.1831610 1.5396821  1392
[3147] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {ring.type=p}                0.1713442  0.8787879 0.1949778 1.7992119  1392
[3148] {ring.type=p,                                                                                              
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1831610  1.0000000 0.1831610 1.5695518  1488
[3149] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {ring.type=p}                0.1831610  0.8857143 0.2067947 1.8133929  1488
[3150] {ring.type=p,                                                                                              
        spore.print.color=k}        => {gill.size=b}                0.1496800  0.8172043 0.1831610 1.1829950  1216
[3151] {gill.size=b,                                                                                              
        spore.print.color=k}        => {ring.type=p}                0.1496800  0.7600000 0.1969473 1.5560081  1216
[3152] {ring.type=p,                                                                                              
        spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.9677419 0.1831610 1.1541303  1440
[3153] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {ring.type=p}                0.1772526  1.0000000 0.1772526 2.0473790  1440
[3154] {ring.type=p,                                                                                              
        spore.print.color=k}        => {ring.number=o}              0.1831610  1.0000000 0.1831610 1.0849359  1488
[3155] {ring.number=o,                                                                                            
        spore.print.color=k}        => {ring.type=p}                0.1831610  0.7948718 0.2304284 1.6274038  1488
[3156] {ring.type=p,                                                                                              
        spore.print.color=k}        => {gill.attachment=f}          0.1831610  1.0000000 0.1831610 1.0265353  1488
[3157] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {ring.type=p}                0.1831610  0.7948718 0.2304284 1.6274038  1488
[3158] {ring.type=p,                                                                                              
        spore.print.color=k}        => {veil.color=w}               0.1831610  1.0000000 0.1831610 1.0252398  1488
[3159] {veil.color=w,                                                                                             
        spore.print.color=k}        => {ring.type=p}                0.1831610  0.7948718 0.2304284 1.6274038  1488
[3160] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1319547  0.6504854 0.2028557 1.2054160  1072
[3161] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {class=e}                    0.1319547  0.8271605 0.1595273 1.5969230  1072
[3162] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1319547  0.6504854 0.2028557 1.1838136  1072
[3163] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {class=e}                    0.1319547  0.8271605 0.1595273 1.5969230  1072
[3164] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.7572816 0.2028557 1.3351032  1248
[3165] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {class=e}                    0.1536189  1.0000000 0.1536189 1.9306084  1248
[3166] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1674052  0.8252427 0.2028557 1.3582398  1360
[3167] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {class=e}                    0.1674052  0.8585859 0.1949778 1.6575930  1360
[3168] {class=e,                                                                                                  
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1792221  0.8834951 0.2028557 1.3866914  1456
[3169] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {class=e}                    0.1792221  0.8666667 0.2067947 1.6731939  1456
[3170] {class=e,                                                                                                  
        spore.print.color=k}        => {gill.size=b}                0.1969473  0.9708738 0.2028557 1.4054488  1600
[3171] {gill.size=b,                                                                                              
        spore.print.color=k}        => {class=e}                    0.1969473  1.0000000 0.1969473 1.9306084  1600
[3172] {class=e,                                                                                                  
        spore.print.color=k}        => {gill.spacing=c}             0.1555884  0.7669903 0.2028557 0.9147136  1264
[3173] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {class=e}                    0.1555884  0.8777778 0.1772526 1.6946451  1264
[3174] {class=e,                                                                                                  
        spore.print.color=k}        => {ring.number=o}              0.2028557  1.0000000 0.2028557 1.0849359  1648
[3175] {ring.number=o,                                                                                            
        spore.print.color=k}        => {class=e}                    0.2028557  0.8803419 0.2304284 1.6995954  1648
[3176] {class=e,                                                                                                  
        spore.print.color=k}        => {gill.attachment=f}          0.2028557  1.0000000 0.2028557 1.0265353  1648
[3177] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {class=e}                    0.2028557  0.8803419 0.2304284 1.6995954  1648
[3178] {class=e,                                                                                                  
        spore.print.color=k}        => {veil.color=w}               0.2028557  1.0000000 0.2028557 1.0252398  1648
[3179] {veil.color=w,                                                                                             
        spore.print.color=k}        => {class=e}                    0.2028557  0.8803419 0.2304284 1.6995954  1648
[3180] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1358936  0.8518519 0.1595273 1.5502788  1104
[3181] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1358936  0.8518519 0.1595273 1.5785685  1104
[3182] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1240768  0.7777778 0.1595273 1.2801189  1008
[3183] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1240768  0.6363636 0.1949778 1.1792468  1008
[3184] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1358936  0.8518519 0.1595273 1.3370256  1104
[3185] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1358936  0.6571429 0.2067947 1.2177529  1104
[3186] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {gill.size=b}                0.1260463  0.7901235 0.1595273 1.1437924  1024
[3187] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1260463  0.6400000 0.1969473 1.1859854  1024
[3188] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {gill.spacing=c}             0.1063516  0.6666667 0.1595273 0.7950675   864
[3189] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1063516  0.6000000 0.1772526 1.1118613   864
[3190] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[3191] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1595273  0.6923077 0.2304284 1.2829169  1296
[3192] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[3193] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1595273  0.6923077 0.2304284 1.2829169  1296
[3194] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=k}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[3195] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.color.below.ring=w}   0.1595273  0.6923077 0.2304284 1.2829169  1296
[3196] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1240768  0.7777778 0.1595273 1.2801189  1008
[3197] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1240768  0.6363636 0.1949778 1.1581134  1008
[3198] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1358936  0.8518519 0.1595273 1.3370256  1104
[3199] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1358936  0.6571429 0.2067947 1.1959293  1104
[3200] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {gill.size=b}                0.1260463  0.7901235 0.1595273 1.1437924  1024
[3201] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1260463  0.6400000 0.1969473 1.1647312  1024
[3202] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {gill.spacing=c}             0.1063516  0.6666667 0.1595273 0.7950675   864
[3203] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1063516  0.6000000 0.1772526 1.0919355   864
[3204] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[3205] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1595273  0.6923077 0.2304284 1.2599256  1296
[3206] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[3207] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1595273  0.6923077 0.2304284 1.2599256  1296
[3208] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=k}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[3209] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.color.above.ring=w}   0.1595273  0.6923077 0.2304284 1.2599256  1296
[3210] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1299852  0.8461538 0.1536189 1.3926568  1056
[3211] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {stalk.shape=t}              0.1299852  0.6666667 0.1949778 1.1753472  1056
[3212] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1299852  0.8461538 0.1536189 1.3280823  1056
[3213] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {stalk.shape=t}              0.1299852  0.6285714 0.2067947 1.1081845  1056
[3214] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {gill.size=b}                0.1536189  1.0000000 0.1536189 1.4476123  1248
[3215] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.7800000 0.1969473 1.3751563  1248
[3216] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {gill.spacing=c}             0.1063516  0.6923077 0.1536189 0.8256470   864
[3217] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.shape=t}              0.1063516  0.6000000 0.1772526 1.0578125   864
[3218] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {ring.number=o}              0.1536189  1.0000000 0.1536189 1.0849359  1248
[3219] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.6666667 0.2304284 1.1753472  1248
[3220] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[3221] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.6666667 0.2304284 1.1753472  1248
[3222] {stalk.shape=t,                                                                                            
        spore.print.color=k}        => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[3223] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.shape=t}              0.1536189  0.6666667 0.2304284 1.1753472  1248
[3224] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1831610  0.9393939 0.1949778 1.4744274  1488
[3225] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1831610  0.8857143 0.2067947 1.4577680  1488
[3226] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {gill.size=b}                0.1614968  0.8282828 0.1949778 1.1990324  1312
[3227] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1614968  0.8200000 0.1969473 1.3496110  1312
[3228] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {gill.spacing=c}             0.1654357  0.8484848 0.1949778 1.0119041  1344
[3229] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1654357  0.9333333 0.1772526 1.5361426  1344
[3230] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3231] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1949778  0.8461538 0.2304284 1.3926568  1584
[3232] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[3233] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1949778  0.8461538 0.2304284 1.3926568  1584
[3234] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=k}        => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[3235] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.surface.below.ring=s} 0.1949778  0.8461538 0.2304284 1.3926568  1584
[3236] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {gill.size=b}                0.1733136  0.8380952 0.2067947 1.2132369  1408
[3237] {gill.size=b,                                                                                              
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1733136  0.8800000 0.1969473 1.3812056  1408
[3238] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.8571429 0.2067947 1.0222297  1440
[3239] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.1772526  1.0000000 0.1772526 1.5695518  1440
[3240] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {ring.number=o}              0.2067947  1.0000000 0.2067947 1.0849359  1680
[3241] {ring.number=o,                                                                                            
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.2067947  0.8974359 0.2304284 1.4085721  1680
[3242] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {gill.attachment=f}          0.2067947  1.0000000 0.2067947 1.0265353  1680
[3243] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.2067947  0.8974359 0.2304284 1.4085721  1680
[3244] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=k}        => {veil.color=w}               0.2067947  1.0000000 0.2067947 1.0252398  1680
[3245] {veil.color=w,                                                                                             
        spore.print.color=k}        => {stalk.surface.above.ring=s} 0.2067947  0.8974359 0.2304284 1.4085721  1680
[3246] {gill.size=b,                                                                                              
        spore.print.color=k}        => {gill.spacing=c}             0.1496800  0.7600000 0.1969473 0.9063770  1216
[3247] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {gill.size=b}                0.1496800  0.8444444 0.1772526 1.2224281  1216
[3248] {gill.size=b,                                                                                              
        spore.print.color=k}        => {ring.number=o}              0.1969473  1.0000000 0.1969473 1.0849359  1600
[3249] {ring.number=o,                                                                                            
        spore.print.color=k}        => {gill.size=b}                0.1969473  0.8547009 0.2304284 1.2372754  1600
[3250] {gill.size=b,                                                                                              
        spore.print.color=k}        => {gill.attachment=f}          0.1969473  1.0000000 0.1969473 1.0265353  1600
[3251] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {gill.size=b}                0.1969473  0.8547009 0.2304284 1.2372754  1600
[3252] {gill.size=b,                                                                                              
        spore.print.color=k}        => {veil.color=w}               0.1969473  1.0000000 0.1969473 1.0252398  1600
[3253] {veil.color=w,                                                                                             
        spore.print.color=k}        => {gill.size=b}                0.1969473  0.8547009 0.2304284 1.2372754  1600
[3254] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {ring.number=o}              0.1772526  1.0000000 0.1772526 1.0849359  1440
[3255] {ring.number=o,                                                                                            
        spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.7692308 0.2304284 0.9173856  1440
[3256] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[3257] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.7692308 0.2304284 0.9173856  1440
[3258] {gill.spacing=c,                                                                                           
        spore.print.color=k}        => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[3259] {veil.color=w,                                                                                             
        spore.print.color=k}        => {gill.spacing=c}             0.1772526  0.7692308 0.2304284 0.9173856  1440
[3260] {ring.number=o,                                                                                            
        spore.print.color=k}        => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3261] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3262] {ring.number=o,                                                                                            
        spore.print.color=k}        => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3263] {veil.color=w,                                                                                             
        spore.print.color=k}        => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3264] {gill.attachment=f,                                                                                        
        spore.print.color=k}        => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3265] {veil.color=w,                                                                                             
        spore.print.color=k}        => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3266] {spore.print.color=n,                                                                                      
        habitat=d}                  => {bruises=t}                  0.1122600  0.9047619 0.1240768 2.1772173   912
[3267] {bruises=t,                                                                                                
        spore.print.color=n}        => {habitat=d}                  0.1122600  0.6551724 0.1713442 1.6907944   912
[3268] {bruises=t,                                                                                                
        habitat=d}                  => {spore.print.color=n}        0.1122600  0.5000000 0.2245199 2.0640244   912
[3269] {spore.print.color=n,                                                                                      
        habitat=d}                  => {odor=n}                     0.1063516  0.8571429 0.1240768 1.9737609   864
[3270] {odor=n,                                                                                                   
        spore.print.color=n}        => {habitat=d}                  0.1063516  0.6428571 0.1654357 1.6590125   864
[3271] {spore.print.color=n,                                                                                      
        habitat=d}                  => {stalk.root=b}               0.1240768  1.0000000 0.1240768 2.1514831  1008
[3272] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {habitat=d}                  0.1240768  1.0000000 0.1240768 2.5806861  1008
[3273] {spore.print.color=n,                                                                                      
        habitat=d}                  => {ring.type=p}                0.1240768  1.0000000 0.1240768 2.0473790  1008
[3274] {ring.type=p,                                                                                              
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.6363636 0.1949778 1.6422548  1008
[3275] {spore.print.color=n,                                                                                      
        habitat=d}                  => {class=e}                    0.1122600  0.9047619 0.1240768 1.7467409   912
[3276] {class=e,                                                                                                  
        spore.print.color=n}        => {habitat=d}                  0.1122600  0.5229358 0.2146726 1.3495331   912
[3277] {spore.print.color=n,                                                                                      
        habitat=d}                  => {stalk.shape=t}              0.1122600  0.9047619 0.1240768 1.5951141   912
[3278] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {habitat=d}                  0.1122600  0.7037037 0.1595273 1.8160384   912
[3279] {spore.print.color=n,                                                                                      
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  1.0000000 0.1240768 1.6458671  1008
[3280] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.6000000 0.2067947 1.5484117  1008
[3281] {spore.print.color=n,                                                                                      
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1240768  1.0000000 0.1240768 1.5695518  1008
[3282] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.5675676 0.2186115 1.4647138  1008
[3283] {spore.print.color=n,                                                                                      
        habitat=d}                  => {gill.size=b}                0.1063516  0.8571429 0.1240768 1.2408105   864
[3284] {gill.size=b,                                                                                              
        spore.print.color=n}        => {habitat=d}                  0.1063516  0.5242718 0.2028557 1.3529811   864
[3285] {spore.print.color=n,                                                                                      
        habitat=d}                  => {gill.spacing=c}             0.1122600  0.9047619 0.1240768 1.0790202   912
[3286] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {habitat=d}                  0.1122600  0.6129032 0.1831610 1.5817109   912
[3287] {spore.print.color=n,                                                                                      
        habitat=d}                  => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[3288] {ring.number=o,                                                                                            
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.5121951 0.2422452 1.3218149  1008
[3289] {spore.print.color=n,                                                                                      
        habitat=d}                  => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3290] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.5250000 0.2363368 1.3548602  1008
[3291] {spore.print.color=n,                                                                                      
        habitat=d}                  => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3292] {veil.color=w,                                                                                             
        spore.print.color=n}        => {habitat=d}                  0.1240768  0.5250000 0.2363368 1.3548602  1008
[3293] {bruises=t,                                                                                                
        spore.print.color=n}        => {odor=n}                     0.1063516  0.6206897 0.1713442 1.4292752   864
[3294] {odor=n,                                                                                                   
        spore.print.color=n}        => {bruises=t}                  0.1063516  0.6428571 0.1654357 1.5469702   864
[3295] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.root=b}               0.1122600  0.6551724 0.1713442 1.4095923   912
[3296] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {bruises=t}                  0.1122600  0.9047619 0.1240768 2.1772173   912
[3297] {bruises=t,                                                                                                
        spore.print.color=n}        => {ring.type=p}                0.1713442  1.0000000 0.1713442 2.0473790  1392
[3298] {ring.type=p,                                                                                              
        spore.print.color=n}        => {bruises=t}                  0.1713442  0.8787879 0.1949778 2.1147135  1392
[3299] {bruises=t,                                                                                                
        spore.print.color=n}        => {class=e}                    0.1555884  0.9080460 0.1713442 1.7530812  1264
[3300] {class=e,                                                                                                  
        spore.print.color=n}        => {bruises=t}                  0.1555884  0.7247706 0.2146726 1.7440867  1264
[3301] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1004431  0.5862069 0.1713442 1.0863013   816
[3302] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {bruises=t}                  0.1004431  0.6071429 0.1654357 1.4610274   816
[3303] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1004431  0.5862069 0.1713442 1.0668335   816
[3304] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {bruises=t}                  0.1004431  0.6071429 0.1654357 1.4610274   816
[3305] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.shape=t}              0.1122600  0.6551724 0.1713442 1.1550826   912
[3306] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {bruises=t}                  0.1122600  0.7037037 0.1595273 1.6933913   912
[3307] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1595273  0.9310345 0.1713442 1.5323590  1296
[3308] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {bruises=t}                  0.1595273  0.7714286 0.2067947 1.8563643  1296
[3309] {bruises=t,                                                                                                
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1713442  1.0000000 0.1713442 1.5695518  1392
[3310] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {bruises=t}                  0.1713442  0.7837838 0.2186115 1.8860958  1392
[3311] {bruises=t,                                                                                                
        spore.print.color=n}        => {gill.size=b}                0.1496800  0.8735632 0.1713442 1.2645808  1216
[3312] {gill.size=b,                                                                                              
        spore.print.color=n}        => {bruises=t}                  0.1496800  0.7378641 0.2028557 1.7755947  1216
[3313] {bruises=t,                                                                                                
        spore.print.color=n}        => {gill.spacing=c}             0.1654357  0.9655172 0.1713442 1.1514771  1344
[3314] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {bruises=t}                  0.1654357  0.9032258 0.1831610 2.1735209  1344
[3315] {bruises=t,                                                                                                
        spore.print.color=n}        => {ring.number=o}              0.1713442  1.0000000 0.1713442 1.0849359  1392
[3316] {ring.number=o,                                                                                            
        spore.print.color=n}        => {bruises=t}                  0.1713442  0.7073171 0.2422452 1.7020865  1392
[3317] {bruises=t,                                                                                                
        spore.print.color=n}        => {gill.attachment=f}          0.1713442  1.0000000 0.1713442 1.0265353  1392
[3318] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {bruises=t}                  0.1713442  0.7250000 0.2363368 1.7446386  1392
[3319] {bruises=t,                                                                                                
        spore.print.color=n}        => {veil.color=w}               0.1713442  1.0000000 0.1713442 1.0252398  1392
[3320] {veil.color=w,                                                                                             
        spore.print.color=n}        => {bruises=t}                  0.1713442  0.7250000 0.2363368 1.7446386  1392
[3321] {odor=n,                                                                                                   
        spore.print.color=n}        => {stalk.root=b}               0.1063516  0.6428571 0.1654357 1.3830962   864
[3322] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {odor=n}                     0.1063516  0.8571429 0.1240768 1.9737609   864
[3323] {odor=n,                                                                                                   
        spore.print.color=n}        => {ring.type=p}                0.1181684  0.7142857 0.1654357 1.4624136   960
[3324] {ring.type=p,                                                                                              
        spore.print.color=n}        => {odor=n}                     0.1181684  0.6060606 0.1949778 1.3955885   960
[3325] {odor=n,                                                                                                   
        spore.print.color=n}        => {class=e}                    0.1654357  1.0000000 0.1654357 1.9306084  1344
[3326] {class=e,                                                                                                  
        spore.print.color=n}        => {odor=n}                     0.1654357  0.7706422 0.2146726 1.7745740  1344
[3327] {odor=n,                                                                                                   
        spore.print.color=n}        => {stalk.shape=t}              0.1536189  0.9285714 0.1654357 1.6370908  1248
[3328] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {odor=n}                     0.1536189  0.9629630 0.1595273 2.2174351  1248
[3329] {odor=n,                                                                                                   
        stalk.shape=t}              => {spore.print.color=n}        0.1536189  0.5000000 0.3072378 2.0640244  1248
[3330] {odor=n,                                                                                                   
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1418021  0.8571429 0.1654357 1.4107432  1152
[3331] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {odor=n}                     0.1418021  0.6857143 0.2067947 1.5790087  1152
[3332] {odor=n,                                                                                                   
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1418021  0.8571429 0.1654357 1.3453301  1152
[3333] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {odor=n}                     0.1418021  0.6486486 0.2186115 1.4936569  1152
[3334] {odor=n,                                                                                                   
        spore.print.color=n}        => {gill.size=b}                0.1595273  0.9642857 0.1654357 1.3959118  1296
[3335] {gill.size=b,                                                                                              
        spore.print.color=n}        => {odor=n}                     0.1595273  0.7864078 0.2028557 1.8108777  1296
[3336] {odor=n,                                                                                                   
        spore.print.color=n}        => {gill.spacing=c}             0.1181684  0.7142857 0.1654357 0.8518581   960
[3337] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {odor=n}                     0.1181684  0.6451613 0.1831610 1.4856265   960
[3338] {odor=n,                                                                                                   
        spore.print.color=n}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[3339] {ring.number=o,                                                                                            
        spore.print.color=n}        => {odor=n}                     0.1654357  0.6829268 0.2422452 1.5725900  1344
[3340] {odor=n,                                                                                                   
        spore.print.color=n}        => {gill.attachment=f}          0.1595273  0.9642857 0.1654357 0.9898733  1296
[3341] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {odor=n}                     0.1595273  0.6750000 0.2363368 1.5543367  1296
[3342] {odor=n,                                                                                                   
        spore.print.color=n}        => {veil.color=w}               0.1595273  0.9642857 0.1654357 0.9886241  1296
[3343] {veil.color=w,                                                                                             
        spore.print.color=n}        => {odor=n}                     0.1595273  0.6750000 0.2363368 1.5543367  1296
[3344] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {ring.type=p}                0.1009355  0.8102767 0.1245692 1.6589435   820
[3345] {ring.type=p,                                                                                              
        spore.print.color=n}        => {cap.shape=x}                0.1009355  0.5176768 0.1949778 1.1503299   820
[3346] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {class=e}                    0.1048744  0.8418972 0.1245692 1.6253738   852
[3347] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1068439  0.8577075 0.1245692 1.4116726   868
[3348] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {cap.shape=x}                0.1068439  0.5166667 0.2067947 1.1480853   868
[3349] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1127523  0.9051383 0.1245692 1.4206615   916
[3350] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {cap.shape=x}                0.1127523  0.5157658 0.2186115 1.1460834   916
[3351] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {ring.number=o}              0.1245692  1.0000000 0.1245692 1.0849359  1012
[3352] {ring.number=o,                                                                                            
        spore.print.color=n}        => {cap.shape=x}                0.1245692  0.5142276 0.2422452 1.1426656  1012
[3353] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {gill.attachment=f}          0.1230921  0.9881423 0.1245692 1.0143629  1000
[3354] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {cap.shape=x}                0.1230921  0.5208333 0.2363368 1.1573441  1000
[3355] {cap.shape=x,                                                                                              
        spore.print.color=n}        => {veil.color=w}               0.1230921  0.9881423 0.1245692 1.0130828  1000
[3356] {veil.color=w,                                                                                             
        spore.print.color=n}        => {cap.shape=x}                0.1230921  0.5208333 0.2363368 1.1573441  1000
[3357] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {ring.type=p}                0.1240768  1.0000000 0.1240768 2.0473790  1008
[3358] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.6363636 0.1949778 1.3691256  1008
[3359] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {class=e}                    0.1122600  0.9047619 0.1240768 1.7467409   912
[3360] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.root=b}               0.1122600  0.5229358 0.2146726 1.1250875   912
[3361] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {stalk.shape=t}              0.1122600  0.9047619 0.1240768 1.5951141   912
[3362] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {stalk.root=b}               0.1122600  0.7037037 0.1595273 1.5140066   912
[3363] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1240768  1.0000000 0.1240768 1.6458671  1008
[3364] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.6000000 0.2067947 1.2908898  1008
[3365] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1240768  1.0000000 0.1240768 1.5695518  1008
[3366] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.5675676 0.2186115 1.2211120  1008
[3367] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {gill.size=b}                0.1063516  0.8571429 0.1240768 1.2408105   864
[3368] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.root=b}               0.1063516  0.5242718 0.2028557 1.1279620   864
[3369] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {gill.spacing=c}             0.1122600  0.9047619 0.1240768 1.0790202   912
[3370] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.root=b}               0.1122600  0.6129032 0.1831610 1.3186509   912
[3371] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {ring.number=o}              0.1240768  1.0000000 0.1240768 1.0849359  1008
[3372] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.5121951 0.2422452 1.1019791  1008
[3373] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3374] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.5250000 0.2363368 1.1295286  1008
[3375] {stalk.root=b,                                                                                             
        spore.print.color=n}        => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3376] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.root=b}               0.1240768  0.5250000 0.2363368 1.1295286  1008
[3377] {ring.type=p,                                                                                              
        spore.print.color=n}        => {class=e}                    0.1674052  0.8585859 0.1949778 1.6575930  1360
[3378] {class=e,                                                                                                  
        spore.print.color=n}        => {ring.type=p}                0.1674052  0.7798165 0.2146726 1.5965800  1360
[3379] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1181684  0.6060606 0.1949778 1.1230922   960
[3380] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {ring.type=p}                0.1181684  0.7142857 0.1654357 1.4624136   960
[3381] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1181684  0.6060606 0.1949778 1.1029651   960
[3382] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {ring.type=p}                0.1181684  0.7142857 0.1654357 1.4624136   960
[3383] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.shape=t}              0.1122600  0.5757576 0.1949778 1.0150726   912
[3384] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {ring.type=p}                0.1122600  0.7037037 0.1595273 1.4407482   912
[3385] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1831610  0.9393939 0.1949778 1.5461176  1488
[3386] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {ring.type=p}                0.1831610  0.8857143 0.2067947 1.8133929  1488
[3387] {ring.type=p,                                                                                              
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1949778  1.0000000 0.1949778 1.5695518  1584
[3388] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {ring.type=p}                0.1949778  0.8918919 0.2186115 1.8260408  1584
[3389] {ring.type=p,                                                                                              
        spore.print.color=n}        => {gill.size=b}                0.1555884  0.7979798 0.1949778 1.1551653  1264
[3390] {gill.size=b,                                                                                              
        spore.print.color=n}        => {ring.type=p}                0.1555884  0.7669903 0.2028557 1.5703198  1264
[3391] {ring.type=p,                                                                                              
        spore.print.color=n}        => {gill.spacing=c}             0.1831610  0.9393939 0.1949778 1.1203224  1488
[3392] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {ring.type=p}                0.1831610  1.0000000 0.1831610 2.0473790  1488
[3393] {ring.type=p,                                                                                              
        spore.print.color=n}        => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3394] {ring.number=o,                                                                                            
        spore.print.color=n}        => {ring.type=p}                0.1949778  0.8048780 0.2422452 1.6478904  1584
[3395] {ring.type=p,                                                                                              
        spore.print.color=n}        => {gill.attachment=f}          0.1890694  0.9696970 0.1949778 0.9954281  1536
[3396] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {ring.type=p}                0.1890694  0.8000000 0.2363368 1.6379032  1536
[3397] {ring.type=p,                                                                                              
        spore.print.color=n}        => {veil.color=w}               0.1890694  0.9696970 0.1949778 0.9941719  1536
[3398] {veil.color=w,                                                                                             
        spore.print.color=n}        => {ring.type=p}                0.1890694  0.8000000 0.2363368 1.6379032  1536
[3399] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1378631  0.6422018 0.2146726 1.1900656  1120
[3400] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {class=e}                    0.1378631  0.8333333 0.1654357 1.6088403  1120
[3401] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1378631  0.6422018 0.2146726 1.1687383  1120
[3402] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {class=e}                    0.1378631  0.8333333 0.1654357 1.6088403  1120
[3403] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.shape=t}              0.1595273  0.7431193 0.2146726 1.3101347  1296
[3404] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {class=e}                    0.1595273  1.0000000 0.1595273 1.9306084  1296
[3405] {class=e,                                                                                                  
        stalk.shape=t}              => {spore.print.color=n}        0.1595273  0.5000000 0.3190547 2.0640244  1296
[3406] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1792221  0.8348624 0.2146726 1.3740725  1456
[3407] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {class=e}                    0.1792221  0.8666667 0.2067947 1.6731939  1456
[3408] {class=e,                                                                                                  
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1910389  0.8899083 0.2146726 1.3967571  1552
[3409] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {class=e}                    0.1910389  0.8738739 0.2186115 1.6871082  1552
[3410] {class=e,                                                                                                  
        spore.print.color=n}        => {gill.size=b}                0.2028557  0.9449541 0.2146726 1.3679272  1648
[3411] {gill.size=b,                                                                                              
        spore.print.color=n}        => {class=e}                    0.2028557  1.0000000 0.2028557 1.9306084  1648
[3412] {class=e,                                                                                                  
        spore.print.color=n}        => {gill.spacing=c}             0.1614968  0.7522936 0.2146726 0.8971863  1312
[3413] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {class=e}                    0.1614968  0.8817204 0.1831610 1.7022568  1312
[3414] {class=e,                                                                                                  
        spore.print.color=n}        => {ring.number=o}              0.2146726  1.0000000 0.2146726 1.0849359  1744
[3415] {ring.number=o,                                                                                            
        spore.print.color=n}        => {class=e}                    0.2146726  0.8861789 0.2422452 1.7108643  1744
[3416] {class=e,                                                                                                  
        spore.print.color=n}        => {gill.attachment=f}          0.2087642  0.9724771 0.2146726 0.9982820  1696
[3417] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {class=e}                    0.2087642  0.8833333 0.2363368 1.7053707  1696
[3418] {class=e,                                                                                                  
        spore.print.color=n}        => {veil.color=w}               0.2087642  0.9724771 0.2146726 0.9970222  1696
[3419] {veil.color=w,                                                                                             
        spore.print.color=n}        => {class=e}                    0.2087642  0.8833333 0.2363368 1.7053707  1696
[3420] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1418021  0.8571429 0.1654357 1.5599078  1152
[3421] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1418021  0.8571429 0.1654357 1.5883733  1152
[3422] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1299852  0.7857143 0.1654357 1.2931813  1056
[3423] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1299852  0.6285714 0.2067947 1.1648071  1056
[3424] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1418021  0.8571429 0.1654357 1.3453301  1152
[3425] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1418021  0.6486486 0.2186115 1.2020122  1152
[3426] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {gill.size=b}                0.1260463  0.7619048 0.1654357 1.1029427  1024
[3427] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1260463  0.6213592 0.2028557 1.1514421  1024
[3428] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {gill.spacing=c}             0.1063516  0.6428571 0.1654357 0.7666723   864
[3429] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1063516  0.5806452 0.1831610 1.0759948   864
[3430] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[3431] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1654357  0.6829268 0.2422452 1.2655332  1344
[3432] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[3433] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1654357  0.7000000 0.2363368 1.2971715  1344
[3434] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=n}        => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[3435] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.color.below.ring=w}   0.1654357  0.7000000 0.2363368 1.2971715  1344
[3436] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1299852  0.7857143 0.1654357 1.2931813  1056
[3437] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1299852  0.6285714 0.2067947 1.1439324  1056
[3438] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1418021  0.8571429 0.1654357 1.3453301  1152
[3439] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1418021  0.6486486 0.2186115 1.1804708  1152
[3440] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {gill.size=b}                0.1260463  0.7619048 0.1654357 1.1029427  1024
[3441] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1260463  0.6213592 0.2028557 1.1308070  1024
[3442] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {gill.spacing=c}             0.1063516  0.6428571 0.1654357 0.7666723   864
[3443] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1063516  0.5806452 0.1831610 1.0567118   864
[3444] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {ring.number=o}              0.1654357  1.0000000 0.1654357 1.0849359  1344
[3445] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1654357  0.6829268 0.2422452 1.2428534  1344
[3446] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[3447] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1654357  0.7000000 0.2363368 1.2739247  1344
[3448] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=n}        => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[3449] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.color.above.ring=w}   0.1654357  0.7000000 0.2363368 1.2739247  1344
[3450] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1358936  0.8518519 0.1595273 1.4020349  1104
[3451] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {stalk.shape=t}              0.1358936  0.6571429 0.2067947 1.1585565  1104
[3452] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1358936  0.8518519 0.1595273 1.3370256  1104
[3453] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {stalk.shape=t}              0.1358936  0.6216216 0.2186115 1.0959319  1104
[3454] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {gill.size=b}                0.1536189  0.9629630 0.1595273 1.3939970  1248
[3455] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.shape=t}              0.1536189  0.7572816 0.2028557 1.3351032  1248
[3456] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {gill.spacing=c}             0.1063516  0.6666667 0.1595273 0.7950675   864
[3457] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.shape=t}              0.1063516  0.5806452 0.1831610 1.0236895   864
[3458] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[3459] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.shape=t}              0.1595273  0.6585366 0.2422452 1.1610137  1296
[3460] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[3461] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.shape=t}              0.1595273  0.6750000 0.2363368 1.1900391  1296
[3462] {stalk.shape=t,                                                                                            
        spore.print.color=n}        => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[3463] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.shape=t}              0.1595273  0.6750000 0.2363368 1.1900391  1296
[3464] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1949778  0.9428571 0.2067947 1.4798631  1584
[3465] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1949778  0.8918919 0.2186115 1.4679355  1584
[3466] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {gill.size=b}                0.1674052  0.8095238 0.2067947 1.1718766  1360
[3467] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1674052  0.8252427 0.2028557 1.3582398  1360
[3468] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {gill.spacing=c}             0.1713442  0.8285714 0.2067947 0.9881554  1392
[3469] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.1713442  0.9354839 0.1831610 1.5396821  1392
[3470] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {ring.number=o}              0.2067947  1.0000000 0.2067947 1.0849359  1680
[3471] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.2067947  0.8536585 0.2422452 1.4050085  1680
[3472] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {gill.attachment=f}          0.2008863  0.9714286 0.2067947 0.9972057  1632
[3473] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.2008863  0.8500000 0.2363368 1.3989870  1632
[3474] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=n}        => {veil.color=w}               0.2008863  0.9714286 0.2067947 0.9959472  1632
[3475] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.surface.below.ring=s} 0.2008863  0.8500000 0.2363368 1.3989870  1632
[3476] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {gill.size=b}                0.1792221  0.8198198 0.2186115 1.1867812  1456
[3477] {gill.size=b,                                                                                              
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1792221  0.8834951 0.2028557 1.3866914  1456
[3478] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {gill.spacing=c}             0.1831610  0.8378378 0.2186115 0.9992065  1488
[3479] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.1831610  1.0000000 0.1831610 1.5695518  1488
[3480] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {ring.number=o}              0.2186115  1.0000000 0.2186115 1.0849359  1776
[3481] {ring.number=o,                                                                                            
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.2186115  0.9024390 0.2422452 1.4164248  1776
[3482] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {gill.attachment=f}          0.2127031  0.9729730 0.2186115 0.9987911  1728
[3483] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.2127031  0.9000000 0.2363368 1.4125966  1728
[3484] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=n}        => {veil.color=w}               0.2127031  0.9729730 0.2186115 0.9975306  1728
[3485] {veil.color=w,                                                                                             
        spore.print.color=n}        => {stalk.surface.above.ring=s} 0.2127031  0.9000000 0.2363368 1.4125966  1728
[3486] {gill.size=b,                                                                                              
        spore.print.color=n}        => {gill.spacing=c}             0.1555884  0.7669903 0.2028557 0.9147136  1264
[3487] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {gill.size=b}                0.1555884  0.8494624 0.1831610 1.2296921  1264
[3488] {gill.size=b,                                                                                              
        spore.print.color=n}        => {ring.number=o}              0.2028557  1.0000000 0.2028557 1.0849359  1648
[3489] {ring.number=o,                                                                                            
        spore.print.color=n}        => {gill.size=b}                0.2028557  0.8373984 0.2422452 1.2122282  1648
[3490] {gill.size=b,                                                                                              
        spore.print.color=n}        => {gill.attachment=f}          0.1969473  0.9708738 0.2028557 0.9966362  1600
[3491] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {gill.size=b}                0.1969473  0.8333333 0.2363368 1.2063435  1600
[3492] {gill.size=b,                                                                                              
        spore.print.color=n}        => {veil.color=w}               0.1969473  0.9708738 0.2028557 0.9953784  1600
[3493] {veil.color=w,                                                                                             
        spore.print.color=n}        => {gill.size=b}                0.1969473  0.8333333 0.2363368 1.2063435  1600
[3494] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {ring.number=o}              0.1831610  1.0000000 0.1831610 1.0849359  1488
[3495] {ring.number=o,                                                                                            
        spore.print.color=n}        => {gill.spacing=c}             0.1831610  0.7560976 0.2422452 0.9017229  1488
[3496] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {gill.attachment=f}          0.1772526  0.9677419 0.1831610 0.9934212  1440
[3497] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {gill.spacing=c}             0.1772526  0.7500000 0.2363368 0.8944510  1440
[3498] {gill.spacing=c,                                                                                           
        spore.print.color=n}        => {veil.color=w}               0.1772526  0.9677419 0.1831610 0.9921675  1440
[3499] {veil.color=w,                                                                                             
        spore.print.color=n}        => {gill.spacing=c}             0.1772526  0.7500000 0.2363368 0.8944510  1440
[3500] {ring.number=o,                                                                                            
        spore.print.color=n}        => {gill.attachment=f}          0.2363368  0.9756098 0.2422452 1.0014978  1920
[3501] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {ring.number=o}              0.2363368  1.0000000 0.2363368 1.0849359  1920
[3502] {ring.number=o,                                                                                            
        spore.print.color=n}        => {veil.color=w}               0.2363368  0.9756098 0.2422452 1.0002339  1920
[3503] {veil.color=w,                                                                                             
        spore.print.color=n}        => {ring.number=o}              0.2363368  1.0000000 0.2363368 1.0849359  1920
[3504] {gill.attachment=f,                                                                                        
        spore.print.color=n}        => {veil.color=w}               0.2363368  1.0000000 0.2363368 1.0252398  1920
[3505] {veil.color=w,                                                                                             
        spore.print.color=n}        => {gill.attachment=f}          0.2363368  1.0000000 0.2363368 1.0265353  1920
[3506] {cap.surface=s,                                                                                            
        habitat=g}                  => {stalk.color.below.ring=w}   0.1085672  1.0000000 0.1085672 1.8531022   882
[3507] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {cap.surface=s}              0.1085672  0.5139860 0.2112260 1.6336551   882
[3508] {cap.surface=s,                                                                                            
        habitat=g}                  => {stalk.color.above.ring=w}   0.1085672  1.0000000 0.1085672 1.8198925   882
[3509] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {cap.surface=s}              0.1085672  0.5139860 0.2112260 1.6336551   882
[3510] {cap.surface=s,                                                                                            
        habitat=g}                  => {gill.size=b}                0.1006893  0.9274376 0.1085672 1.3425701   818
[3511] {cap.surface=s,                                                                                            
        gill.size=b}                => {habitat=g}                  0.1006893  0.5760563 0.1747907 2.1787159   818
[3512] {cap.surface=s,                                                                                            
        habitat=g}                  => {gill.attachment=f}          0.1085672  1.0000000 0.1085672 1.0265353   882
[3513] {cap.surface=s,                                                                                            
        habitat=g}                  => {veil.color=w}               0.1085672  1.0000000 0.1085672 1.0252398   882
[3514] {stalk.shape=e,                                                                                            
        habitat=g}                  => {gill.size=b}                0.1363860  0.8964401 0.1521418 1.2976977  1108
[3515] {gill.size=b,                                                                                              
        habitat=g}                  => {stalk.shape=e}              0.1363860  0.5485149 0.2486460 1.2673876  1108
[3516] {stalk.shape=e,                                                                                            
        habitat=g}                  => {gill.spacing=c}             0.1166913  0.7669903 0.1521418 0.9147136   948
[3517] {gill.spacing=c,                                                                                           
        habitat=g}                  => {stalk.shape=e}              0.1166913  0.8681319 0.1344165 2.0058883   948
[3518] {stalk.shape=e,                                                                                            
        habitat=g}                  => {ring.number=o}              0.1122600  0.7378641 0.1521418 0.8005352   912
[3519] {ring.number=o,                                                                                            
        habitat=g}                  => {stalk.shape=e}              0.1122600  0.5000000 0.2245199 1.1552901   912
[3520] {stalk.shape=e,                                                                                            
        habitat=g}                  => {gill.attachment=f}          0.1521418  1.0000000 0.1521418 1.0265353  1236
[3521] {gill.attachment=f,                                                                                        
        habitat=g}                  => {stalk.shape=e}              0.1521418  0.5754190 0.2644018 1.3295517  1236
[3522] {stalk.shape=e,                                                                                            
        habitat=g}                  => {veil.color=w}               0.1521418  1.0000000 0.1521418 1.0252398  1236
[3523] {veil.color=w,                                                                                             
        habitat=g}                  => {stalk.shape=e}              0.1521418  0.5754190 0.2644018 1.3295517  1236
[3524] {odor=n,                                                                                                   
        habitat=g}                  => {class=e}                    0.1299852  0.9670330 0.1344165 1.8669619  1056
[3525] {class=e,                                                                                                  
        habitat=g}                  => {odor=n}                     0.1299852  0.7500000 0.1733136 1.7270408  1056
[3526] {odor=n,                                                                                                   
        habitat=g}                  => {stalk.color.below.ring=w}   0.1344165  1.0000000 0.1344165 1.8531022  1092
[3527] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {odor=n}                     0.1344165  0.6363636 0.2112260 1.4653680  1092
[3528] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {habitat=g}                  0.1344165  0.5504032 0.2442147 2.0816926  1092
[3529] {odor=n,                                                                                                   
        habitat=g}                  => {stalk.color.above.ring=w}   0.1344165  1.0000000 0.1344165 1.8198925  1092
[3530] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {odor=n}                     0.1344165  0.6363636 0.2112260 1.4653680  1092
[3531] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {habitat=g}                  0.1344165  0.5290698 0.2540620 2.0010069  1092
[3532] {odor=n,                                                                                                   
        habitat=g}                  => {bruises=f}                  0.1299852  0.9670330 0.1344165 1.6546284  1056
[3533] {bruises=f,                                                                                                
        habitat=g}                  => {odor=n}                     0.1299852  0.7096774 0.1831610 1.6341892  1056
[3534] {bruises=f,                                                                                                
        odor=n}                     => {habitat=g}                  0.1299852  0.7058824 0.1841457 2.6697338  1056
[3535] {odor=n,                                                                                                   
        habitat=g}                  => {gill.size=b}                0.1344165  1.0000000 0.1344165 1.4476123  1092
[3536] {gill.size=b,                                                                                              
        habitat=g}                  => {odor=n}                     0.1344165  0.5405941 0.2486460 1.2448373  1092
[3537] {odor=n,                                                                                                   
        habitat=g}                  => {gill.attachment=f}          0.1344165  1.0000000 0.1344165 1.0265353  1092
[3538] {gill.attachment=f,                                                                                        
        habitat=g}                  => {odor=n}                     0.1344165  0.5083799 0.2644018 1.1706571  1092
[3539] {odor=n,                                                                                                   
        habitat=g}                  => {veil.color=w}               0.1344165  1.0000000 0.1344165 1.0252398  1092
[3540] {veil.color=w,                                                                                             
        habitat=g}                  => {odor=n}                     0.1344165  0.5083799 0.2644018 1.1706571  1092
[3541] {cap.shape=x,                                                                                              
        habitat=g}                  => {gill.size=b}                0.1161989  0.9365079 0.1240768 1.3557004   944
[3542] {cap.shape=x,                                                                                              
        habitat=g}                  => {ring.number=o}              0.1122600  0.9047619 0.1240768 0.9816087   912
[3543] {ring.number=o,                                                                                            
        habitat=g}                  => {cap.shape=x}                0.1122600  0.5000000 0.2245199 1.1110503   912
[3544] {cap.shape=x,                                                                                              
        habitat=g}                  => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[3545] {cap.shape=x,                                                                                              
        habitat=g}                  => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[3546] {ring.type=p,                                                                                              
        habitat=g}                  => {stalk.color.below.ring=w}   0.1166913  1.0000000 0.1166913 1.8531022   948
[3547] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {ring.type=p}                0.1166913  0.5524476 0.2112260 1.1310695   948
[3548] {ring.type=p,                                                                                              
        habitat=g}                  => {stalk.color.above.ring=w}   0.1166913  1.0000000 0.1166913 1.8198925   948
[3549] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {ring.type=p}                0.1166913  0.5524476 0.2112260 1.1310695   948
[3550] {ring.type=p,                                                                                              
        habitat=g}                  => {gill.size=b}                0.1009355  0.8649789 0.1166913 1.2521541   820
[3551] {ring.type=p,                                                                                              
        habitat=g}                  => {gill.attachment=f}          0.1166913  1.0000000 0.1166913 1.0265353   948
[3552] {ring.type=p,                                                                                              
        habitat=g}                  => {veil.color=w}               0.1166913  1.0000000 0.1166913 1.0252398   948
[3553] {class=e,                                                                                                  
        habitat=g}                  => {stalk.color.below.ring=w}   0.1733136  1.0000000 0.1733136 1.8531022  1408
[3554] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {class=e}                    0.1733136  0.8205128 0.2112260 1.5840889  1408
[3555] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {habitat=g}                  0.1733136  0.5207101 0.3328410 1.9693894  1408
[3556] {class=e,                                                                                                  
        habitat=g}                  => {stalk.color.above.ring=w}   0.1733136  1.0000000 0.1733136 1.8198925  1408
[3557] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {class=e}                    0.1733136  0.8205128 0.2112260 1.5840889  1408
[3558] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {habitat=g}                  0.1733136  0.5116279 0.3387494 1.9350396  1408
[3559] {class=e,                                                                                                  
        habitat=g}                  => {bruises=f}                  0.1299852  0.7500000 0.1733136 1.2832772  1056
[3560] {bruises=f,                                                                                                
        habitat=g}                  => {class=e}                    0.1299852  0.7096774 0.1831610 1.3701092  1056
[3561] {class=e,                                                                                                  
        bruises=f}                  => {habitat=g}                  0.1299852  0.7252747 0.1792221 2.7430782  1056
[3562] {class=e,                                                                                                  
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1083210  0.6250000 0.1733136 0.9809699   880
[3563] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {class=e}                    0.1083210  0.7885305 0.1373708 1.5223435   880
[3564] {class=e,                                                                                                  
        habitat=g}                  => {gill.size=b}                0.1733136  1.0000000 0.1733136 1.4476123  1408
[3565] {gill.size=b,                                                                                              
        habitat=g}                  => {class=e}                    0.1733136  0.6970297 0.2486460 1.3456914  1408
[3566] {class=e,                                                                                                  
        habitat=g}                  => {ring.number=o}              0.1378631  0.7954545 0.1733136 0.8630172  1120
[3567] {ring.number=o,                                                                                            
        habitat=g}                  => {class=e}                    0.1378631  0.6140351 0.2245199 1.1854613  1120
[3568] {class=e,                                                                                                  
        habitat=g}                  => {gill.attachment=f}          0.1733136  1.0000000 0.1733136 1.0265353  1408
[3569] {gill.attachment=f,                                                                                        
        habitat=g}                  => {class=e}                    0.1733136  0.6554935 0.2644018 1.2655012  1408
[3570] {class=e,                                                                                                  
        habitat=g}                  => {veil.color=w}               0.1733136  1.0000000 0.1733136 1.0252398  1408
[3571] {veil.color=w,                                                                                             
        habitat=g}                  => {class=e}                    0.1733136  0.6554935 0.2644018 1.2655012  1408
[3572] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {stalk.color.above.ring=w}   0.2112260  1.0000000 0.2112260 1.8198925  1716
[3573] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {stalk.color.below.ring=w}   0.2112260  1.0000000 0.2112260 1.8531022  1716
[3574] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {stalk.shape=t}              0.1122600  0.5314685 0.2112260 0.9369901   912
[3575] {stalk.shape=t,                                                                                            
        habitat=g}                  => {stalk.color.below.ring=w}   0.1122600  1.0000000 0.1122600 1.8531022   912
[3576] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {bruises=f}                  0.1299852  0.6153846 0.2112260 1.0529454  1056
[3577] {bruises=f,                                                                                                
        habitat=g}                  => {stalk.color.below.ring=w}   0.1299852  0.7096774 0.1831610 1.3151048  1056
[3578] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {stalk.surface.below.ring=s} 0.1255539  0.5944056 0.2112260 0.9783126  1020
[3579] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {stalk.color.below.ring=w}   0.1255539  1.0000000 0.1255539 1.8531022  1020
[3580] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1373708  0.6503497 0.2112260 1.0207574  1116
[3581] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {stalk.color.below.ring=w}   0.1373708  1.0000000 0.1373708 1.8531022  1116
[3582] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {gill.size=b}                0.1954702  0.9254079 0.2112260 1.3396319  1588
[3583] {gill.size=b,                                                                                              
        habitat=g}                  => {stalk.color.below.ring=w}   0.1954702  0.7861386 0.2486460 1.4567952  1588
[3584] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {habitat=g}                  0.1954702  0.5623229 0.3476120 2.1267745  1588
[3585] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {ring.number=o}              0.1713442  0.8111888 0.2112260 0.8800879  1392
[3586] {ring.number=o,                                                                                            
        habitat=g}                  => {stalk.color.below.ring=w}   0.1713442  0.7631579 0.2245199 1.4142096  1392
[3587] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {gill.attachment=f}          0.2112260  1.0000000 0.2112260 1.0265353  1716
[3588] {gill.attachment=f,                                                                                        
        habitat=g}                  => {stalk.color.below.ring=w}   0.2112260  0.7988827 0.2644018 1.4804112  1716
[3589] {stalk.color.below.ring=w,                                                                                 
        habitat=g}                  => {veil.color=w}               0.2112260  1.0000000 0.2112260 1.0252398  1716
[3590] {veil.color=w,                                                                                             
        habitat=g}                  => {stalk.color.below.ring=w}   0.2112260  0.7988827 0.2644018 1.4804112  1716
[3591] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {stalk.shape=t}              0.1122600  0.5314685 0.2112260 0.9369901   912
[3592] {stalk.shape=t,                                                                                            
        habitat=g}                  => {stalk.color.above.ring=w}   0.1122600  1.0000000 0.1122600 1.8198925   912
[3593] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {bruises=f}                  0.1299852  0.6153846 0.2112260 1.0529454  1056
[3594] {bruises=f,                                                                                                
        habitat=g}                  => {stalk.color.above.ring=w}   0.1299852  0.7096774 0.1831610 1.2915366  1056
[3595] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {stalk.surface.below.ring=s} 0.1255539  0.5944056 0.2112260 0.9783126  1020
[3596] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {stalk.color.above.ring=w}   0.1255539  1.0000000 0.1255539 1.8198925  1020
[3597] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1373708  0.6503497 0.2112260 1.0207574  1116
[3598] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {stalk.color.above.ring=w}   0.1373708  1.0000000 0.1373708 1.8198925  1116
[3599] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {gill.size=b}                0.1954702  0.9254079 0.2112260 1.3396319  1588
[3600] {gill.size=b,                                                                                              
        habitat=g}                  => {stalk.color.above.ring=w}   0.1954702  0.7861386 0.2486460 1.4306877  1588
[3601] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {habitat=g}                  0.1954702  0.5623229 0.3476120 2.1267745  1588
[3602] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {ring.number=o}              0.1713442  0.8111888 0.2112260 0.8800879  1392
[3603] {ring.number=o,                                                                                            
        habitat=g}                  => {stalk.color.above.ring=w}   0.1713442  0.7631579 0.2245199 1.3888653  1392
[3604] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {gill.attachment=f}          0.2112260  1.0000000 0.2112260 1.0265353  1716
[3605] {gill.attachment=f,                                                                                        
        habitat=g}                  => {stalk.color.above.ring=w}   0.2112260  0.7988827 0.2644018 1.4538806  1716
[3606] {stalk.color.above.ring=w,                                                                                 
        habitat=g}                  => {veil.color=w}               0.2112260  1.0000000 0.2112260 1.0252398  1716
[3607] {veil.color=w,                                                                                             
        habitat=g}                  => {stalk.color.above.ring=w}   0.2112260  0.7988827 0.2644018 1.4538806  1716
[3608] {stalk.shape=t,                                                                                            
        habitat=g}                  => {gill.size=b}                0.1122600  1.0000000 0.1122600 1.4476123   912
[3609] {stalk.shape=t,                                                                                            
        habitat=g}                  => {ring.number=o}              0.1122600  1.0000000 0.1122600 1.0849359   912
[3610] {ring.number=o,                                                                                            
        habitat=g}                  => {stalk.shape=t}              0.1122600  0.5000000 0.2245199 0.8815104   912
[3611] {stalk.shape=t,                                                                                            
        habitat=g}                  => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[3612] {stalk.shape=t,                                                                                            
        habitat=g}                  => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[3613] {bruises=f,                                                                                                
        habitat=g}                  => {gill.size=b}                0.1831610  1.0000000 0.1831610 1.4476123  1488
[3614] {gill.size=b,                                                                                              
        habitat=g}                  => {bruises=f}                  0.1831610  0.7366337 0.2486460 1.2604069  1488
[3615] {bruises=f,                                                                                                
        gill.size=b}                => {habitat=g}                  0.1831610  0.5731895 0.3195470 2.1678732  1488
[3616] {bruises=f,                                                                                                
        habitat=g}                  => {ring.number=o}              0.1477105  0.8064516 0.1831610 0.8749483  1200
[3617] {ring.number=o,                                                                                            
        habitat=g}                  => {bruises=f}                  0.1477105  0.6578947 0.2245199 1.1256817  1200
[3618] {bruises=f,                                                                                                
        habitat=g}                  => {gill.attachment=f}          0.1831610  1.0000000 0.1831610 1.0265353  1488
[3619] {gill.attachment=f,                                                                                        
        habitat=g}                  => {bruises=f}                  0.1831610  0.6927374 0.2644018 1.1852988  1488
[3620] {bruises=f,                                                                                                
        habitat=g}                  => {veil.color=w}               0.1831610  1.0000000 0.1831610 1.0252398  1488
[3621] {veil.color=w,                                                                                             
        habitat=g}                  => {bruises=f}                  0.1831610  0.6927374 0.2644018 1.1852988  1488
[3622] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {gill.size=b}                0.1097981  0.8745098 0.1255539 1.2659511   892
[3623] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {ring.number=o}              0.1033973  0.8235294 0.1255539 0.8934766   840
[3624] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {gill.attachment=f}          0.1255539  1.0000000 0.1255539 1.0265353  1020
[3625] {stalk.surface.below.ring=s,                                                                               
        habitat=g}                  => {veil.color=w}               0.1255539  1.0000000 0.1255539 1.0252398  1020
[3626] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {gill.size=b}                0.1216150  0.8853047 0.1373708 1.2815779   988
[3627] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {ring.number=o}              0.1152142  0.8387097 0.1373708 0.9099462   936
[3628] {ring.number=o,                                                                                            
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1152142  0.5131579 0.2245199 0.8054279   936
[3629] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {gill.attachment=f}          0.1373708  1.0000000 0.1373708 1.0265353  1116
[3630] {gill.attachment=f,                                                                                        
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1373708  0.5195531 0.2644018 0.8154654  1116
[3631] {stalk.surface.above.ring=s,                                                                               
        habitat=g}                  => {veil.color=w}               0.1373708  1.0000000 0.1373708 1.0252398  1116
[3632] {veil.color=w,                                                                                             
        habitat=g}                  => {stalk.surface.above.ring=s} 0.1373708  0.5195531 0.2644018 0.8154654  1116
[3633] {gill.spacing=c,                                                                                           
        habitat=g}                  => {gill.size=b}                0.1186608  0.8827839 0.1344165 1.2779288   964
[3634] {gill.size=b,                                                                                              
        habitat=g}                  => {ring.number=o}              0.2087642  0.8396040 0.2486460 0.9109165  1696
[3635] {ring.number=o,                                                                                            
        habitat=g}                  => {gill.size=b}                0.2087642  0.9298246 0.2245199 1.3460254  1696
[3636] {gill.size=b,                                                                                              
        habitat=g}                  => {gill.attachment=f}          0.2486460  1.0000000 0.2486460 1.0265353  2020
[3637] {gill.attachment=f,                                                                                        
        habitat=g}                  => {gill.size=b}                0.2486460  0.9404097 0.2644018 1.3613486  2020
[3638] {gill.size=b,                                                                                              
        habitat=g}                  => {veil.color=w}               0.2486460  1.0000000 0.2486460 1.0252398  2020
[3639] {veil.color=w,                                                                                             
        habitat=g}                  => {gill.size=b}                0.2486460  0.9404097 0.2644018 1.3613486  2020
[3640] {gill.spacing=c,                                                                                           
        habitat=g}                  => {ring.number=o}              0.1299852  0.9670330 0.1344165 1.0491688  1056
[3641] {ring.number=o,                                                                                            
        habitat=g}                  => {gill.spacing=c}             0.1299852  0.5789474 0.2245199 0.6904534  1056
[3642] {gill.spacing=c,                                                                                           
        habitat=g}                  => {gill.attachment=f}          0.1344165  1.0000000 0.1344165 1.0265353  1092
[3643] {gill.attachment=f,                                                                                        
        habitat=g}                  => {gill.spacing=c}             0.1344165  0.5083799 0.2644018 0.6062945  1092
[3644] {gill.spacing=c,                                                                                           
        habitat=g}                  => {veil.color=w}               0.1344165  1.0000000 0.1344165 1.0252398  1092
[3645] {veil.color=w,                                                                                             
        habitat=g}                  => {gill.spacing=c}             0.1344165  0.5083799 0.2644018 0.6062945  1092
[3646] {ring.number=o,                                                                                            
        habitat=g}                  => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[3647] {gill.attachment=f,                                                                                        
        habitat=g}                  => {ring.number=o}              0.2245199  0.8491620 0.2644018 0.9212863  1824
[3648] {ring.number=o,                                                                                            
        habitat=g}                  => {veil.color=w}               0.2245199  1.0000000 0.2245199 1.0252398  1824
[3649] {veil.color=w,                                                                                             
        habitat=g}                  => {ring.number=o}              0.2245199  0.8491620 0.2644018 0.9212863  1824
[3650] {gill.attachment=f,                                                                                        
        habitat=g}                  => {veil.color=w}               0.2644018  1.0000000 0.2644018 1.0252398  2148
[3651] {veil.color=w,                                                                                             
        habitat=g}                  => {gill.attachment=f}          0.2644018  1.0000000 0.2644018 1.0265353  2148
[3652] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1772526  0.9090909 0.1949778 3.1135980  1440
[3653] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1772526  0.9090909 0.1949778 3.2054924  1440
[3654] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {odor=f}                     0.1772526  0.8000000 0.2215657 3.0088889  1440
[3655] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[3656] {odor=f,                                                                                                   
        stalk.shape=e}              => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[3657] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {odor=f}                     0.1595273  0.9000000 0.1772526 3.3850000  1296
[3658] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.8181818 0.1949778 1.7603043  1296
[3659] {odor=f,                                                                                                   
        stalk.root=b}               => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[3660] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[3661] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[3662] {class=p,                                                                                                  
        odor=f}                     => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[3663] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {odor=f}                     0.1949778  0.7333333 0.2658789 2.7581481  1584
[3664] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {population=v}               0.1152142  0.5909091 0.1949778 1.1882538   936
[3665] {odor=f,                                                                                                   
        population=v}               => {stalk.surface.below.ring=k} 0.1152142  0.6842105 0.1683900 2.4125548   936
[3666] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {odor=f}                     0.1152142  0.6190476 0.1861152 2.3283069   936
[3667] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {bruises=f}                  0.1949778  1.0000000 0.1949778 1.7110362  1584
[3668] {bruises=f,                                                                                                
        odor=f}                     => {stalk.surface.below.ring=k} 0.1949778  0.8461538 0.2304284 2.9835737  1584
[3669] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {odor=f}                     0.1949778  0.6875000 0.2836041 2.5857639  1584
[3670] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {gill.size=b}                0.1595273  0.8181818 0.1949778 1.1844100  1296
[3671] {odor=f,                                                                                                   
        gill.size=b}                => {stalk.surface.below.ring=k} 0.1595273  0.8181818 0.1949778 2.8849432  1296
[3672] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {odor=f}                     0.1595273  0.9000000 0.1772526 3.3850000  1296
[3673] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[3674] {odor=f,                                                                                                   
        gill.spacing=c}             => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[3675] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {odor=f}                     0.1949778  0.7333333 0.2658789 2.7581481  1584
[3676] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3677] {odor=f,                                                                                                   
        ring.number=o}              => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[3678] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {odor=f}                     0.1949778  0.7333333 0.2658789 2.7581481  1584
[3679] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[3680] {odor=f,                                                                                                   
        gill.attachment=f}          => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[3681] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {odor=f}                     0.1949778  0.6875000 0.2836041 2.5857639  1584
[3682] {odor=f,                                                                                                   
        stalk.surface.below.ring=k} => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[3683] {odor=f,                                                                                                   
        veil.color=w}               => {stalk.surface.below.ring=k} 0.1949778  0.7333333 0.2658789 2.5857639  1584
[3684] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {odor=f}                     0.1949778  0.6875000 0.2836041 2.5857639  1584
[3685] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[3686] {odor=f,                                                                                                   
        stalk.shape=e}              => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[3687] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {odor=f}                     0.1595273  0.8594164 0.1856228 3.2323607  1296
[3688] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.8181818 0.1949778 1.7603043  1296
[3689] {odor=f,                                                                                                   
        stalk.root=b}               => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[3690] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {odor=f}                     0.1595273  1.0000000 0.1595273 3.7611111  1296
[3691] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[3692] {class=p,                                                                                                  
        odor=f}                     => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[3693] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {odor=f}                     0.1949778  0.7109515 0.2742491 2.6739677  1584
[3694] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {population=v}               0.1152142  0.5909091 0.1949778 1.1882538   936
[3695] {odor=f,                                                                                                   
        population=v}               => {stalk.surface.above.ring=k} 0.1152142  0.6842105 0.1683900 2.3433922   936
[3696] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {odor=f}                     0.1152142  0.6062176 0.1900542 2.2800518   936
[3697] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {bruises=f}                  0.1949778  1.0000000 0.1949778 1.7110362  1584
[3698] {bruises=f,                                                                                                
        odor=f}                     => {stalk.surface.above.ring=k} 0.1949778  0.8461538 0.2304284 2.8980413  1584
[3699] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {odor=f}                     0.1949778  0.6677909 0.2919744 2.5116358  1584
[3700] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {gill.size=b}                0.1595273  0.8181818 0.1949778 1.1844100  1296
[3701] {odor=f,                                                                                                   
        gill.size=b}                => {stalk.surface.above.ring=k} 0.1595273  0.8181818 0.1949778 2.8022382  1296
[3702] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {odor=f}                     0.1595273  0.8780488 0.1816839 3.3024390  1296
[3703] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[3704] {odor=f,                                                                                                   
        gill.spacing=c}             => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[3705] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {odor=f}                     0.1949778  0.7109515 0.2742491 2.6739677  1584
[3706] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3707] {odor=f,                                                                                                   
        ring.number=o}              => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[3708] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {odor=f}                     0.1949778  0.7226277 0.2698178 2.7178832  1584
[3709] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[3710] {odor=f,                                                                                                   
        gill.attachment=f}          => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[3711] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {odor=f}                     0.1949778  0.6728972 0.2897587 2.5308411  1584
[3712] {odor=f,                                                                                                   
        stalk.surface.above.ring=k} => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[3713] {odor=f,                                                                                                   
        veil.color=w}               => {stalk.surface.above.ring=k} 0.1949778  0.7333333 0.2658789 2.5116358  1584
[3714] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {odor=f}                     0.1949778  0.6677909 0.2919744 2.5116358  1584
[3715] {cap.shape=f,                                                                                              
        odor=f}                     => {class=p}                    0.1211226  1.0000000 0.1211226 2.0745659   984
[3716] {class=p,                                                                                                  
        cap.shape=f}                => {odor=f}                     0.1211226  0.6323907 0.1915313 2.3784919   984
[3717] {cap.shape=f,                                                                                              
        odor=f}                     => {bruises=f}                  0.1033973  0.8536585 0.1211226 1.4606407   840
[3718] {cap.shape=f,                                                                                              
        odor=f}                     => {gill.spacing=c}             0.1211226  1.0000000 0.1211226 1.1926013   984
[3719] {cap.shape=f,                                                                                              
        odor=f}                     => {ring.number=o}              0.1211226  1.0000000 0.1211226 1.0849359   984
[3720] {cap.shape=f,                                                                                              
        odor=f}                     => {gill.attachment=f}          0.1211226  1.0000000 0.1211226 1.0265353   984
[3721] {cap.shape=f,                                                                                              
        odor=f}                     => {veil.color=w}               0.1211226  1.0000000 0.1211226 1.0252398   984
[3722] {cap.surface=y,                                                                                            
        odor=f}                     => {class=p}                    0.1152142  1.0000000 0.1152142 2.0745659   936
[3723] {class=p,                                                                                                  
        cap.surface=y}              => {odor=f}                     0.1152142  0.5379310 0.2141802 2.0232184   936
[3724] {cap.surface=y,                                                                                            
        odor=f}                     => {bruises=f}                  0.1152142  1.0000000 0.1152142 1.7110362   936
[3725] {bruises=f,                                                                                                
        odor=f}                     => {cap.surface=y}              0.1152142  0.5000000 0.2304284 1.2521578   936
[3726] {cap.surface=y,                                                                                            
        bruises=f}                  => {odor=f}                     0.1152142  0.5665860 0.2033481 2.1309927   936
[3727] {cap.surface=y,                                                                                            
        odor=f}                     => {gill.spacing=c}             0.1152142  1.0000000 0.1152142 1.1926013   936
[3728] {cap.surface=y,                                                                                            
        odor=f}                     => {ring.number=o}              0.1152142  1.0000000 0.1152142 1.0849359   936
[3729] {cap.surface=y,                                                                                            
        odor=f}                     => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[3730] {cap.surface=y,                                                                                            
        odor=f}                     => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[3731] {odor=f,                                                                                                   
        stalk.shape=e}              => {stalk.root=b}               0.1595273  1.0000000 0.1595273 2.1514831  1296
[3732] {odor=f,                                                                                                   
        stalk.root=b}               => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[3733] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {odor=f}                     0.1595273  0.7788462 0.2048252 2.9293269  1296
[3734] {odor=f,                                                                                                   
        stalk.shape=e}              => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[3735] {class=p,                                                                                                  
        odor=f}                     => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[3736] {class=p,                                                                                                  
        stalk.shape=e}              => {odor=f}                     0.1595273  0.6821053 0.2338749 2.5654737  1296
[3737] {odor=f,                                                                                                   
        stalk.shape=e}              => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[3738] {bruises=f,                                                                                                
        odor=f}                     => {stalk.shape=e}              0.1595273  0.6923077 0.2304284 1.5996324  1296
[3739] {bruises=f,                                                                                                
        stalk.shape=e}              => {odor=f}                     0.1595273  0.5754885 0.2772033 2.1644760  1296
[3740] {odor=f,                                                                                                   
        stalk.shape=e}              => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[3741] {odor=f,                                                                                                   
        gill.size=b}                => {stalk.shape=e}              0.1595273  0.8181818 0.1949778 1.8904747  1296
[3742] {odor=f,                                                                                                   
        stalk.shape=e}              => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[3743] {odor=f,                                                                                                   
        gill.spacing=c}             => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[3744] {odor=f,                                                                                                   
        stalk.shape=e}              => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[3745] {odor=f,                                                                                                   
        ring.number=o}              => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[3746] {odor=f,                                                                                                   
        stalk.shape=e}              => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[3747] {odor=f,                                                                                                   
        gill.attachment=f}          => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[3748] {odor=f,                                                                                                   
        stalk.shape=e}              => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[3749] {odor=f,                                                                                                   
        veil.color=w}               => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[3750] {cap.shape=x,                                                                                              
        odor=f}                     => {class=p}                    0.1211226  1.0000000 0.1211226 2.0745659   984
[3751] {class=p,                                                                                                  
        cap.shape=x}                => {odor=f}                     0.1211226  0.5761124 0.2102413 2.1668228   984
[3752] {cap.shape=x,                                                                                              
        odor=f}                     => {bruises=f}                  0.1033973  0.8536585 0.1211226 1.4606407   840
[3753] {cap.shape=x,                                                                                              
        odor=f}                     => {gill.spacing=c}             0.1211226  1.0000000 0.1211226 1.1926013   984
[3754] {cap.shape=x,                                                                                              
        odor=f}                     => {ring.number=o}              0.1211226  1.0000000 0.1211226 1.0849359   984
[3755] {cap.shape=x,                                                                                              
        odor=f}                     => {gill.attachment=f}          0.1211226  1.0000000 0.1211226 1.0265353   984
[3756] {cap.shape=x,                                                                                              
        odor=f}                     => {veil.color=w}               0.1211226  1.0000000 0.1211226 1.0252398   984
[3757] {odor=f,                                                                                                   
        stalk.root=b}               => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[3758] {class=p,                                                                                                  
        odor=f}                     => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[3759] {class=p,                                                                                                  
        stalk.root=b}               => {odor=f}                     0.1949778  0.8534483 0.2284589 3.2099138  1584
[3760] {odor=f,                                                                                                   
        stalk.root=b}               => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[3761] {bruises=f,                                                                                                
        odor=f}                     => {stalk.root=b}               0.1595273  0.6923077 0.2304284 1.4894883  1296
[3762] {bruises=f,                                                                                                
        stalk.root=b}               => {odor=f}                     0.1595273  0.8350515 0.1910389 3.1407216  1296
[3763] {odor=f,                                                                                                   
        stalk.root=b}               => {gill.size=b}                0.1949778  1.0000000 0.1949778 1.4476123  1584
[3764] {odor=f,                                                                                                   
        gill.size=b}                => {stalk.root=b}               0.1949778  1.0000000 0.1949778 2.1514831  1584
[3765] {odor=f,                                                                                                   
        stalk.root=b}               => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[3766] {odor=f,                                                                                                   
        gill.spacing=c}             => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[3767] {odor=f,                                                                                                   
        stalk.root=b}               => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3768] {odor=f,                                                                                                   
        ring.number=o}              => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[3769] {odor=f,                                                                                                   
        stalk.root=b}               => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[3770] {odor=f,                                                                                                   
        gill.attachment=f}          => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[3771] {odor=f,                                                                                                   
        stalk.root=b}               => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[3772] {odor=f,                                                                                                   
        veil.color=w}               => {stalk.root=b}               0.1949778  0.7333333 0.2658789 1.5777542  1584
[3773] {class=p,                                                                                                  
        odor=f}                     => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[3774] {odor=f,                                                                                                   
        population=v}               => {class=p}                    0.1683900  1.0000000 0.1683900 2.0745659  1368
[3775] {odor=f,                                                                                                   
        stalk.shape=t}              => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[3776] {class=p,                                                                                                  
        odor=f}                     => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[3777] {bruises=f,                                                                                                
        odor=f}                     => {class=p}                    0.2304284  1.0000000 0.2304284 2.0745659  1872
[3778] {class=p,                                                                                                  
        bruises=f}                  => {odor=f}                     0.2304284  0.5686513 0.4052191 2.1387606  1872
[3779] {class=p,                                                                                                  
        odor=f}                     => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[3780] {odor=f,                                                                                                   
        gill.size=b}                => {class=p}                    0.1949778  1.0000000 0.1949778 2.0745659  1584
[3781] {class=p,                                                                                                  
        gill.size=b}                => {odor=f}                     0.1949778  0.9361702 0.2082718 3.5210402  1584
[3782] {class=p,                                                                                                  
        odor=f}                     => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[3783] {odor=f,                                                                                                   
        gill.spacing=c}             => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[3784] {class=p,                                                                                                  
        gill.spacing=c}             => {odor=f}                     0.2658789  0.5678233 0.4682422 2.1356467  2160
[3785] {class=p,                                                                                                  
        odor=f}                     => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[3786] {odor=f,                                                                                                   
        ring.number=o}              => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[3787] {class=p,                                                                                                  
        ring.number=o}              => {odor=f}                     0.2658789  0.5672269 0.4687346 2.1334034  2160
[3788] {class=p,                                                                                                  
        odor=f}                     => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[3789] {odor=f,                                                                                                   
        gill.attachment=f}          => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[3790] {class=p,                                                                                                  
        gill.attachment=f}          => {odor=f}                     0.2658789  0.5541303 0.4798129 2.0841457  2160
[3791] {class=p,                                                                                                  
        odor=f}                     => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[3792] {odor=f,                                                                                                   
        veil.color=w}               => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[3793] {class=p,                                                                                                  
        veil.color=w}               => {odor=f}                     0.2658789  0.5527124 0.4810438 2.0788127  2160
[3794] {odor=f,                                                                                                   
        population=v}               => {bruises=f}                  0.1506647  0.8947368 0.1683900 1.5309271  1224
[3795] {bruises=f,                                                                                                
        odor=f}                     => {population=v}               0.1506647  0.6538462 0.2304284 1.3148134  1224
[3796] {odor=f,                                                                                                   
        population=v}               => {gill.spacing=c}             0.1683900  1.0000000 0.1683900 1.1926013  1368
[3797] {odor=f,                                                                                                   
        gill.spacing=c}             => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[3798] {odor=f,                                                                                                   
        population=v}               => {ring.number=o}              0.1683900  1.0000000 0.1683900 1.0849359  1368
[3799] {odor=f,                                                                                                   
        ring.number=o}              => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[3800] {odor=f,                                                                                                   
        population=v}               => {gill.attachment=f}          0.1683900  1.0000000 0.1683900 1.0265353  1368
[3801] {odor=f,                                                                                                   
        gill.attachment=f}          => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[3802] {odor=f,                                                                                                   
        population=v}               => {veil.color=w}               0.1683900  1.0000000 0.1683900 1.0252398  1368
[3803] {odor=f,                                                                                                   
        veil.color=w}               => {population=v}               0.1683900  0.6333333 0.2658789 1.2735644  1368
[3804] {odor=f,                                                                                                   
        stalk.shape=t}              => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[3805] {odor=f,                                                                                                   
        stalk.shape=t}              => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[3806] {odor=f,                                                                                                   
        stalk.shape=t}              => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[3807] {odor=f,                                                                                                   
        stalk.shape=t}              => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[3808] {bruises=f,                                                                                                
        odor=f}                     => {gill.size=b}                0.1595273  0.6923077 0.2304284 1.0021931  1296
[3809] {odor=f,                                                                                                   
        gill.size=b}                => {bruises=f}                  0.1595273  0.8181818 0.1949778 1.3999387  1296
[3810] {bruises=f,                                                                                                
        odor=f}                     => {gill.spacing=c}             0.2304284  1.0000000 0.2304284 1.1926013  1872
[3811] {odor=f,                                                                                                   
        gill.spacing=c}             => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[3812] {bruises=f,                                                                                                
        gill.spacing=c}             => {odor=f}                     0.2304284  0.5288136 0.4357459 1.9889266  1872
[3813] {bruises=f,                                                                                                
        odor=f}                     => {ring.number=o}              0.2304284  1.0000000 0.2304284 1.0849359  1872
[3814] {odor=f,                                                                                                   
        ring.number=o}              => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[3815] {bruises=f,                                                                                                
        odor=f}                     => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[3816] {odor=f,                                                                                                   
        gill.attachment=f}          => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[3817] {bruises=f,                                                                                                
        odor=f}                     => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[3818] {odor=f,                                                                                                   
        veil.color=w}               => {bruises=f}                  0.2304284  0.8666667 0.2658789 1.4828981  1872
[3819] {odor=f,                                                                                                   
        gill.size=b}                => {gill.spacing=c}             0.1949778  1.0000000 0.1949778 1.1926013  1584
[3820] {odor=f,                                                                                                   
        gill.spacing=c}             => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[3821] {odor=f,                                                                                                   
        gill.size=b}                => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[3822] {odor=f,                                                                                                   
        ring.number=o}              => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[3823] {odor=f,                                                                                                   
        gill.size=b}                => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[3824] {odor=f,                                                                                                   
        gill.attachment=f}          => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[3825] {odor=f,                                                                                                   
        gill.size=b}                => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[3826] {odor=f,                                                                                                   
        veil.color=w}               => {gill.size=b}                0.1949778  0.7333333 0.2658789 1.0615823  1584
[3827] {odor=f,                                                                                                   
        gill.spacing=c}             => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[3828] {odor=f,                                                                                                   
        ring.number=o}              => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[3829] {odor=f,                                                                                                   
        gill.spacing=c}             => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[3830] {odor=f,                                                                                                   
        gill.attachment=f}          => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[3831] {odor=f,                                                                                                   
        gill.spacing=c}             => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[3832] {odor=f,                                                                                                   
        veil.color=w}               => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[3833] {odor=f,                                                                                                   
        ring.number=o}              => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[3834] {odor=f,                                                                                                   
        gill.attachment=f}          => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[3835] {odor=f,                                                                                                   
        ring.number=o}              => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[3836] {odor=f,                                                                                                   
        veil.color=w}               => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[3837] {odor=f,                                                                                                   
        gill.attachment=f}          => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[3838] {odor=f,                                                                                                   
        veil.color=w}               => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[3839] {cap.color=n,                                                                                              
        spore.print.color=w}        => {stalk.root=?}               0.1142294  0.9392713 0.1216150 3.0768708   928
[3840] {cap.color=n,                                                                                              
        stalk.root=?}               => {spore.print.color=w}        0.1142294  0.8285714 0.1378631 2.8188083   928
[3841] {cap.color=n,                                                                                              
        spore.print.color=w}        => {gill.size=n}                0.1112752  0.9149798 0.1216150 2.9591145   904
[3842] {cap.color=n,                                                                                              
        gill.size=n}                => {spore.print.color=w}        0.1112752  0.8370370 0.1329394 2.8476084   904
[3843] {cap.color=n,                                                                                              
        spore.print.color=w}        => {ring.type=e}                0.1171837  0.9635628 0.1216150 2.8198789   952
[3844] {cap.color=n,                                                                                              
        ring.type=e}                => {spore.print.color=w}        0.1171837  0.7880795 0.1486952 2.6810543   952
[3845] {cap.color=n,                                                                                              
        spore.print.color=w}        => {class=p}                    0.1097981  0.9028340 0.1216150 1.8729886   892
[3846] {class=p,                                                                                                  
        cap.color=n}                => {spore.print.color=w}        0.1097981  0.8745098 0.1255539 2.9750911   892
[3847] {cap.color=n,                                                                                              
        spore.print.color=w}        => {population=v}               0.1117676  0.9190283 0.1216150 1.8480659   908
[3848] {cap.color=n,                                                                                              
        population=v}               => {spore.print.color=w}        0.1117676  0.6579710 0.1698671 2.2384240   908
[3849] {cap.color=n,                                                                                              
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.8744939 0.1216150 1.5417510   864
[3850] {cap.color=n,                                                                                              
        stalk.shape=t}              => {spore.print.color=w}        0.1063516  0.5094340 0.2087642 1.7330995   864
[3851] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[3852] {cap.color=n,                                                                                              
        spore.print.color=w}        => {bruises=f}                  0.1147218  0.9433198 0.1216150 1.6140544   932
[3853] {cap.color=n,                                                                                              
        bruises=f}                  => {spore.print.color=w}        0.1147218  0.6526611 0.1757755 2.2203595   932
[3854] {cap.color=n,                                                                                              
        spore.print.color=w}        => {gill.spacing=c}             0.1186608  0.9757085 0.1216150 1.1636312   964
[3855] {cap.color=n,                                                                                              
        spore.print.color=w}        => {ring.number=o}              0.1112752  0.9149798 0.1216150 0.9926944   904
[3856] {cap.color=n,                                                                                              
        spore.print.color=w}        => {gill.attachment=f}          0.1208764  0.9939271 0.1216150 1.0203012   982
[3857] {cap.color=n,                                                                                              
        spore.print.color=w}        => {veil.color=w}               0.1216150  1.0000000 0.1216150 1.0252398   988
[3858] {cap.color=n,                                                                                              
        stalk.root=?}               => {gill.size=n}                0.1083210  0.7857143 0.1378631 2.5410601   880
[3859] {cap.color=n,                                                                                              
        gill.size=n}                => {stalk.root=?}               0.1083210  0.8148148 0.1329394 2.6691756   880
[3860] {cap.color=n,                                                                                              
        stalk.root=?}               => {ring.type=e}                0.1142294  0.8285714 0.1378631 2.4248250   928
[3861] {cap.color=n,                                                                                              
        ring.type=e}                => {stalk.root=?}               0.1142294  0.7682119 0.1486952 2.5165136   928
[3862] {cap.color=n,                                                                                              
        stalk.root=?}               => {class=p}                    0.1083210  0.7857143 0.1378631 1.6300161   880
[3863] {class=p,                                                                                                  
        cap.color=n}                => {stalk.root=?}               0.1083210  0.8627451 0.1255539 2.8261860   880
[3864] {class=p,                                                                                                  
        stalk.root=?}               => {cap.color=n}                0.1083210  0.5000000 0.2166420 1.7784588   880
[3865] {cap.color=n,                                                                                              
        stalk.root=?}               => {population=v}               0.1201379  0.8714286 0.1378631 1.7523479   976
[3866] {cap.color=n,                                                                                              
        population=v}               => {stalk.root=?}               0.1201379  0.7072464 0.1698671 2.3168022   976
[3867] {stalk.root=?,                                                                                             
        population=v}               => {cap.color=n}                0.1201379  0.5191489 0.2314131 1.8465700   976
[3868] {cap.color=n,                                                                                              
        stalk.root=?}               => {stalk.shape=t}              0.1063516  0.7714286 0.1378631 1.3600446   864
[3869] {cap.color=n,                                                                                              
        stalk.shape=t}              => {stalk.root=?}               0.1063516  0.5094340 0.2087642 1.6688071   864
[3870] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {cap.color=n}                0.1063516  0.5000000 0.2127031 1.7784588   864
[3871] {cap.color=n,                                                                                              
        stalk.root=?}               => {bruises=f}                  0.1319547  0.9571429 0.1378631 1.6377061  1072
[3872] {cap.color=n,                                                                                              
        bruises=f}                  => {stalk.root=?}               0.1319547  0.7507003 0.1757755 2.4591488  1072
[3873] {cap.color=n,                                                                                              
        stalk.root=?}               => {gill.spacing=c}             0.1378631  1.0000000 0.1378631 1.1926013  1120
[3874] {cap.color=n,                                                                                              
        gill.spacing=c}             => {stalk.root=?}               0.1378631  0.5588822 0.2466765 1.8307900  1120
[3875] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {cap.color=n}                0.1378631  0.5109489 0.2698178 1.8174032  1120
[3876] {cap.color=n,                                                                                              
        stalk.root=?}               => {ring.number=o}              0.1319547  0.9571429 0.1378631 1.0384386  1072
[3877] {stalk.root=?,                                                                                             
        ring.number=o}              => {cap.color=n}                0.1319547  0.5360000 0.2461841 1.9065079  1072
[3878] {cap.color=n,                                                                                              
        stalk.root=?}               => {gill.attachment=f}          0.1142294  0.8285714 0.1378631 0.8505578   928
[3879] {cap.color=n,                                                                                              
        stalk.root=?}               => {veil.color=w}               0.1142294  0.8285714 0.1378631 0.8494844   928
[3880] {cap.color=n,                                                                                              
        gill.size=n}                => {ring.type=e}                0.1112752  0.8370370 0.1329394 2.4495997   904
[3881] {cap.color=n,                                                                                              
        ring.type=e}                => {gill.size=n}                0.1112752  0.7483444 0.1486952 2.4202029   904
[3882] {cap.color=n,                                                                                              
        gill.size=n}                => {class=p}                    0.1240768  0.9333333 0.1329394 1.9362615  1008
[3883] {class=p,                                                                                                  
        cap.color=n}                => {gill.size=n}                0.1240768  0.9882353 0.1255539 3.1960285  1008
[3884] {cap.color=n,                                                                                              
        gill.size=n}                => {population=v}               0.1221073  0.9185185 0.1329394 1.8470407   992
[3885] {cap.color=n,                                                                                              
        population=v}               => {gill.size=n}                0.1221073  0.7188406 0.1698671 2.3247854   992
[3886] {cap.color=n,                                                                                              
        gill.size=n}                => {stalk.shape=t}              0.1063516  0.8000000 0.1329394 1.4104167   864
[3887] {cap.color=n,                                                                                              
        stalk.shape=t}              => {gill.size=n}                0.1063516  0.5094340 0.2087642 1.6475484   864
[3888] {cap.color=n,                                                                                              
        gill.size=n}                => {bruises=f}                  0.1171837  0.8814815 0.1329394 1.5082467   952
[3889] {cap.color=n,                                                                                              
        bruises=f}                  => {gill.size=n}                0.1171837  0.6666667 0.1757755 2.1560510   952
[3890] {cap.color=n,                                                                                              
        gill.size=n}                => {gill.spacing=c}             0.1299852  0.9777778 0.1329394 1.1660990  1056
[3891] {cap.color=n,                                                                                              
        gill.spacing=c}             => {gill.size=n}                0.1299852  0.5269461 0.2466765 1.7041840  1056
[3892] {cap.color=n,                                                                                              
        gill.size=n}                => {ring.number=o}              0.1329394  1.0000000 0.1329394 1.0849359  1080
[3893] {cap.color=n,                                                                                              
        gill.size=n}                => {gill.attachment=f}          0.1329394  1.0000000 0.1329394 1.0265353  1080
[3894] {cap.color=n,                                                                                              
        gill.attachment=f}          => {gill.size=n}                0.1329394  0.5177373 0.2567701 1.6744020  1080
[3895] {cap.color=n,                                                                                              
        gill.size=n}                => {veil.color=w}               0.1329394  1.0000000 0.1329394 1.0252398  1080
[3896] {cap.color=n,                                                                                              
        veil.color=w}               => {gill.size=n}                0.1329394  0.5162524 0.2575086 1.6695997  1080
[3897] {cap.surface=s,                                                                                            
        cap.color=n}                => {ring.number=o}              0.1004431  0.9577465 0.1048744 1.0390935   816
[3898] {cap.color=n,                                                                                              
        ring.type=e}                => {class=p}                    0.1083210  0.7284768 0.1486952 1.5112732   880
[3899] {class=p,                                                                                                  
        cap.color=n}                => {ring.type=e}                0.1083210  0.8627451 0.1255539 2.5248347   880
[3900] {cap.color=n,                                                                                              
        ring.type=e}                => {population=v}               0.1112752  0.7483444 0.1486952 1.5048390   904
[3901] {cap.color=n,                                                                                              
        population=v}               => {ring.type=e}                0.1112752  0.6550725 0.1698671 1.9170781   904
[3902] {ring.type=e,                                                                                              
        population=v}               => {cap.color=n}                0.1112752  0.5000000 0.2225505 1.7784588   904
[3903] {cap.color=n,                                                                                              
        ring.type=e}                => {stalk.shape=t}              0.1378631  0.9271523 0.1486952 1.6345889  1120
[3904] {cap.color=n,                                                                                              
        stalk.shape=t}              => {ring.type=e}                0.1378631  0.6603774 0.2087642 1.9326029  1120
[3905] {cap.color=n,                                                                                              
        ring.type=e}                => {bruises=f}                  0.1427868  0.9602649 0.1486952 1.6430480  1160
[3906] {cap.color=n,                                                                                              
        bruises=f}                  => {ring.type=e}                0.1427868  0.8123249 0.1757755 2.3772794  1160
[3907] {cap.color=n,                                                                                              
        ring.type=e}                => {gill.spacing=c}             0.1142294  0.7682119 0.1486952 0.9161705   928
[3908] {cap.color=n,                                                                                              
        ring.type=e}                => {ring.number=o}              0.1427868  0.9602649 0.1486952 1.0418259  1160
[3909] {cap.color=n,                                                                                              
        ring.number=o}              => {ring.type=e}                0.1427868  0.5272727 0.2708026 1.5430705  1160
[3910] {cap.color=n,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.1486952  1.0000000 0.1486952 1.0265353  1208
[3911] {cap.color=n,                                                                                              
        gill.attachment=f}          => {ring.type=e}                0.1486952  0.5790988 0.2567701 1.6947400  1208
[3912] {cap.color=n,                                                                                              
        ring.type=e}                => {veil.color=w}               0.1486952  1.0000000 0.1486952 1.0252398  1208
[3913] {cap.color=n,                                                                                              
        veil.color=w}               => {ring.type=e}                0.1486952  0.5774379 0.2575086 1.6898794  1208
[3914] {cap.color=n,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.1063516  0.9600000 0.1107829 1.6925000   864
[3915] {cap.color=n,                                                                                              
        stalk.shape=t}              => {habitat=d}                  0.1063516  0.5094340 0.2087642 1.3146892   864
[3916] {cap.color=n,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.1107829  1.0000000 0.1107829 1.1926013   900
[3917] {cap.color=n,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1083210  0.9777778 0.1107829 1.0608262   880
[3918] {cap.color=n,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1100443  0.9933333 0.1107829 1.0196917   894
[3919] {cap.color=n,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1107829  1.0000000 0.1107829 1.0252398   900
[3920] {cap.shape=f,                                                                                              
        cap.color=n}                => {ring.number=o}              0.1097981  0.9695652 0.1132447 1.0519161   892
[3921] {cap.shape=f,                                                                                              
        cap.color=n}                => {gill.attachment=f}          0.1070901  0.9456522 0.1132447 0.9707453   870
[3922] {cap.shape=f,                                                                                              
        cap.color=n}                => {veil.color=w}               0.1073363  0.9478261 0.1132447 0.9717490   872
[3923] {cap.surface=y,                                                                                            
        cap.color=n}                => {gill.spacing=c}             0.1152142  0.9873418 0.1166913 1.1775051   936
[3924] {cap.surface=y,                                                                                            
        cap.color=n}                => {ring.number=o}              0.1107829  0.9493671 0.1166913 1.0300024   900
[3925] {cap.surface=y,                                                                                            
        cap.color=n}                => {gill.attachment=f}          0.1159527  0.9936709 0.1166913 1.0200382   942
[3926] {cap.surface=y,                                                                                            
        cap.color=n}                => {veil.color=w}               0.1166913  1.0000000 0.1166913 1.0252398   948
[3927] {cap.color=n,                                                                                              
        bruises=t}                  => {stalk.surface.above.ring=s} 0.1053668  1.0000000 0.1053668 1.5695518   856
[3928] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {bruises=t}                  0.1053668  0.5131894 0.2053176 1.2349381   856
[3929] {cap.color=n,                                                                                              
        bruises=t}                  => {gill.spacing=c}             0.1053668  1.0000000 0.1053668 1.1926013   856
[3930] {cap.color=n,                                                                                              
        bruises=t}                  => {gill.attachment=f}          0.1053668  1.0000000 0.1053668 1.0265353   856
[3931] {cap.color=n,                                                                                              
        bruises=t}                  => {veil.color=w}               0.1053668  1.0000000 0.1053668 1.0252398   856
[3932] {cap.color=n,                                                                                              
        odor=n}                     => {ring.type=p}                0.1033973  0.7094595 0.1457410 1.4525324   840
[3933] {cap.color=n,                                                                                              
        ring.type=p}                => {odor=n}                     0.1033973  0.7894737 0.1309700 1.8179377   840
[3934] {cap.color=n,                                                                                              
        odor=n}                     => {class=e}                    0.1437715  0.9864865 0.1457410 1.9045191  1168
[3935] {class=e,                                                                                                  
        cap.color=n}                => {odor=n}                     0.1437715  0.9240506 0.1555884 2.1278309  1168
[3936] {cap.color=n,                                                                                              
        odor=n}                     => {stalk.shape=t}              0.1024126  0.7027027 0.1457410 1.2388795   832
[3937] {cap.color=n,                                                                                              
        odor=n}                     => {stalk.surface.below.ring=s} 0.1245692  0.8547297 0.1457410 1.4067715  1012
[3938] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {odor=n}                     0.1245692  0.6437659 0.1935007 1.4824133  1012
[3939] {cap.color=n,                                                                                              
        odor=n}                     => {stalk.surface.above.ring=s} 0.1245692  0.8547297 0.1457410 1.3415426  1012
[3940] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {odor=n}                     0.1245692  0.6067146 0.2053176 1.3970946  1012
[3941] {cap.color=n,                                                                                              
        odor=n}                     => {gill.size=b}                0.1349089  0.9256757 0.1457410 1.3400195  1096
[3942] {cap.color=n,                                                                                              
        gill.size=b}                => {odor=n}                     0.1349089  0.9102990 0.1482029 2.0961647  1096
[3943] {cap.color=n,                                                                                              
        odor=n}                     => {gill.spacing=c}             0.1112752  0.7635135 0.1457410 0.9105672   904
[3944] {cap.color=n,                                                                                              
        odor=n}                     => {ring.number=o}              0.1368784  0.9391892 0.1457410 1.0189601  1112
[3945] {cap.color=n,                                                                                              
        ring.number=o}              => {odor=n}                     0.1368784  0.5054545 0.2708026 1.1639208  1112
[3946] {cap.color=n,                                                                                              
        odor=n}                     => {gill.attachment=f}          0.1221073  0.8378378 0.1457410 0.8600701   992
[3947] {cap.color=n,                                                                                              
        odor=n}                     => {veil.color=w}               0.1221073  0.8378378 0.1457410 0.8589847   992
[3948] {cap.shape=x,                                                                                              
        cap.color=n}                => {ring.number=o}              0.1097981  0.9695652 0.1132447 1.0519161   892
[3949] {cap.shape=x,                                                                                              
        cap.color=n}                => {gill.attachment=f}          0.1070901  0.9456522 0.1132447 0.9707453   870
[3950] {cap.shape=x,                                                                                              
        cap.color=n}                => {veil.color=w}               0.1073363  0.9478261 0.1132447 0.9717490   872
[3951] {class=p,                                                                                                  
        cap.color=n}                => {population=v}               0.1161989  0.9254902 0.1255539 1.8610600   944
[3952] {cap.color=n,                                                                                              
        population=v}               => {class=p}                    0.1161989  0.6840580 0.1698671 1.4191233   944
[3953] {class=p,                                                                                                  
        cap.color=n}                => {stalk.shape=t}              0.1063516  0.8470588 0.1255539 1.4933824   864
[3954] {cap.color=n,                                                                                              
        stalk.shape=t}              => {class=p}                    0.1063516  0.5094340 0.2087642 1.0568543   864
[3955] {class=p,                                                                                                  
        cap.color=n}                => {bruises=f}                  0.1097981  0.8745098 0.1255539 1.4963180   892
[3956] {cap.color=n,                                                                                              
        bruises=f}                  => {class=p}                    0.1097981  0.6246499 0.1757755 1.2958773   892
[3957] {class=p,                                                                                                  
        cap.color=n}                => {gill.spacing=c}             0.1255539  1.0000000 0.1255539 1.1926013  1020
[3958] {cap.color=n,                                                                                              
        gill.spacing=c}             => {class=p}                    0.1255539  0.5089820 0.2466765 1.0559168  1020
[3959] {class=p,                                                                                                  
        cap.color=n}                => {ring.number=o}              0.1240768  0.9882353 0.1255539 1.0721719  1008
[3960] {class=p,                                                                                                  
        cap.color=n}                => {gill.attachment=f}          0.1248154  0.9941176 0.1255539 1.0204968  1014
[3961] {class=p,                                                                                                  
        cap.color=n}                => {veil.color=w}               0.1255539  1.0000000 0.1255539 1.0252398  1020
[3962] {cap.color=n,                                                                                              
        ring.type=p}                => {class=e}                    0.1152142  0.8796992 0.1309700 1.6983547   936
[3963] {class=e,                                                                                                  
        cap.color=n}                => {ring.type=p}                0.1152142  0.7405063 0.1555884 1.5160971   936
[3964] {cap.color=n,                                                                                              
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1171837  0.8947368 0.1309700 1.4726179   952
[3965] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=p}                0.1171837  0.6055980 0.1935007 1.2398886   952
[3966] {cap.color=n,                                                                                              
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1290005  0.9849624 0.1309700 1.5459495  1048
[3967] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=p}                0.1290005  0.6282974 0.2053176 1.2863628  1048
[3968] {cap.color=n,                                                                                              
        ring.type=p}                => {gill.size=b}                0.1093058  0.8345865 0.1309700 1.2081576   888
[3969] {cap.color=n,                                                                                              
        gill.size=b}                => {ring.type=p}                0.1093058  0.7375415 0.1482029 1.5100271   888
[3970] {cap.color=n,                                                                                              
        ring.type=p}                => {gill.spacing=c}             0.1309700  1.0000000 0.1309700 1.1926013  1064
[3971] {cap.color=n,                                                                                              
        gill.spacing=c}             => {ring.type=p}                0.1309700  0.5309381 0.2466765 1.0870316  1064
[3972] {cap.color=n,                                                                                              
        ring.type=p}                => {ring.number=o}              0.1280158  0.9774436 0.1309700 1.0604637  1040
[3973] {cap.color=n,                                                                                              
        ring.type=p}                => {gill.attachment=f}          0.1073363  0.8195489 0.1309700 0.8412958   872
[3974] {cap.color=n,                                                                                              
        ring.type=p}                => {veil.color=w}               0.1073363  0.8195489 0.1309700 0.8402341   872
[3975] {cap.color=n,                                                                                              
        population=v}               => {stalk.shape=t}              0.1418021  0.8347826 0.1698671 1.4717391  1152
[3976] {cap.color=n,                                                                                              
        stalk.shape=t}              => {population=v}               0.1418021  0.6792453 0.2087642 1.3658883  1152
[3977] {cap.color=n,                                                                                              
        population=v}               => {bruises=f}                  0.1260463  0.7420290 0.1698671 1.2696385  1024
[3978] {cap.color=n,                                                                                              
        bruises=f}                  => {population=v}               0.1260463  0.7170868 0.1757755 1.4419835  1024
[3979] {cap.color=n,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1132447  0.6666667 0.1698671 1.0972447   920
[3980] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {population=v}               0.1132447  0.5852417 0.1935007 1.1768574   920
[3981] {cap.color=n,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1132447  0.6666667 0.1698671 1.0463679   920
[3982] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {population=v}               0.1132447  0.5515588 0.2053176 1.1091246   920
[3983] {cap.color=n,                                                                                              
        population=v}               => {gill.spacing=c}             0.1669129  0.9826087 0.1698671 1.1718604  1356
[3984] {cap.color=n,                                                                                              
        gill.spacing=c}             => {population=v}               0.1669129  0.6766467 0.2466765 1.3606628  1356
[3985] {cap.color=n,                                                                                              
        population=v}               => {ring.number=o}              0.1693747  0.9971014 0.1698671 1.0817912  1376
[3986] {cap.color=n,                                                                                              
        ring.number=o}              => {population=v}               0.1693747  0.6254545 0.2708026 1.2577210  1376
[3987] {cap.color=n,                                                                                              
        population=v}               => {gill.attachment=f}          0.1580502  0.9304348 0.1698671 0.9551241  1284
[3988] {cap.color=n,                                                                                              
        gill.attachment=f}          => {population=v}               0.1580502  0.6155321 0.2567701 1.2377681  1284
[3989] {cap.color=n,                                                                                              
        population=v}               => {veil.color=w}               0.1580502  0.9304348 0.1698671 0.9539187  1284
[3990] {cap.color=n,                                                                                              
        veil.color=w}               => {population=v}               0.1580502  0.6137667 0.2575086 1.2342180  1284
[3991] {class=e,                                                                                                  
        cap.color=n}                => {stalk.shape=t}              0.1024126  0.6582278 0.1555884 1.1604694   832
[3992] {class=e,                                                                                                  
        cap.color=n}                => {stalk.surface.below.ring=s} 0.1245692  0.8006329 0.1555884 1.3177354  1012
[3993] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {class=e}                    0.1245692  0.6437659 0.1935007 1.2428598  1012
[3994] {class=e,                                                                                                  
        cap.color=n}                => {stalk.surface.above.ring=s} 0.1363860  0.8765823 0.1555884 1.3758413  1108
[3995] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {class=e}                    0.1363860  0.6642686 0.2053176 1.2824425  1108
[3996] {class=e,                                                                                                  
        cap.color=n}                => {gill.size=b}                0.1467258  0.9430380 0.1555884 1.3651533  1192
[3997] {cap.color=n,                                                                                              
        gill.size=b}                => {class=e}                    0.1467258  0.9900332 0.1482029 1.9113664  1192
[3998] {class=e,                                                                                                  
        cap.color=n}                => {gill.spacing=c}             0.1211226  0.7784810 0.1555884 0.9284175   984
[3999] {class=e,                                                                                                  
        cap.color=n}                => {ring.number=o}              0.1467258  0.9430380 0.1555884 1.0231358  1192
[4000] {cap.color=n,                                                                                              
        ring.number=o}              => {class=e}                    0.1467258  0.5418182 0.2708026 1.0460387  1192
[4001] {class=e,                                                                                                  
        cap.color=n}                => {gill.attachment=f}          0.1319547  0.8481013 0.1555884 0.8706058  1072
[4002] {cap.color=n,                                                                                              
        gill.attachment=f}          => {class=e}                    0.1319547  0.5139022 0.2567701 0.9921439  1072
[4003] {class=e,                                                                                                  
        cap.color=n}                => {veil.color=w}               0.1319547  0.8481013 0.1555884 0.8695072  1072
[4004] {cap.color=n,                                                                                              
        veil.color=w}               => {class=e}                    0.1319547  0.5124283 0.2575086 0.9892984  1072
[4005] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1019202  0.6993243 0.1457410 1.2726951   828
[4006] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1019202  0.6764706 0.1506647 1.2535691   828
[4007] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1083210  0.7432432 0.1457410 1.3103533   880
[4008] {cap.color=n,                                                                                              
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1083210  0.5188679 0.2087642 0.9615153   880
[4009] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1033973  0.7094595 0.1457410 1.1135334   840
[4010] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1033973  0.5035971 0.2053176 0.9332169   840
[4011] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1142294  0.7837838 0.1457410 0.9347416   928
[4012] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.1418021  0.9729730 0.1457410 1.0556133  1152
[4013] {cap.color=n,                                                                                              
        ring.number=o}              => {stalk.color.below.ring=w}   0.1418021  0.5236364 0.2708026 0.9703517  1152
[4014] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1457410  1.0000000 0.1457410 1.0265353  1184
[4015] {cap.color=n,                                                                                              
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.1457410  0.5675935 0.2567701 1.0518087  1184
[4016] {cap.color=n,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.1457410  1.0000000 0.1457410 1.0252398  1184
[4017] {cap.color=n,                                                                                              
        veil.color=w}               => {stalk.color.below.ring=w}   0.1457410  0.5659656 0.2575086 1.0487921  1184
[4018] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1083210  0.7189542 0.1506647 1.2675313   880
[4019] {cap.color=n,                                                                                              
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1083210  0.5188679 0.2087642 0.9442838   880
[4020] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1048744  0.6960784 0.1506647 1.0925311   852
[4021] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1048744  0.5107914 0.2053176 0.9295854   852
[4022] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1161989  0.7712418 0.1506647 0.9197840   944
[4023] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.1467258  0.9738562 0.1506647 1.0565716  1192
[4024] {cap.color=n,                                                                                              
        ring.number=o}              => {stalk.color.above.ring=w}   0.1467258  0.5418182 0.2708026 0.9860508  1192
[4025] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1506647  1.0000000 0.1506647 1.0265353  1224
[4026] {cap.color=n,                                                                                              
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.1506647  0.5867689 0.2567701 1.0678564  1224
[4027] {cap.color=n,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.1506647  1.0000000 0.1506647 1.0252398  1224
[4028] {cap.color=n,                                                                                              
        veil.color=w}               => {stalk.color.above.ring=w}   0.1506647  0.5850860 0.2575086 1.0647937  1224
[4029] {cap.color=n,                                                                                              
        stalk.shape=t}              => {bruises=f}                  0.1378631  0.6603774 0.2087642 1.1299296  1120
[4030] {cap.color=n,                                                                                              
        bruises=f}                  => {stalk.shape=t}              0.1378631  0.7843137 0.1757755 1.3827614  1120
[4031] {cap.color=n,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1398326  0.6698113 0.2087642 1.1024204  1136
[4032] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1398326  0.7226463 0.1935007 1.2740405  1136
[4033] {cap.color=n,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1398326  0.6698113 0.2087642 1.0513035  1136
[4034] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1398326  0.6810552 0.2053176 1.2007144  1136
[4035] {cap.color=n,                                                                                              
        gill.size=b}                => {stalk.shape=t}              0.1024126  0.6910299 0.1482029 1.2183001   832
[4036] {cap.color=n,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.1772526  0.8490566 0.2087642 1.0125860  1440
[4037] {cap.color=n,                                                                                              
        gill.spacing=c}             => {stalk.shape=t}              0.1772526  0.7185629 0.2466765 1.2668413  1440
[4038] {cap.color=n,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.2087642  1.0000000 0.2087642 1.0849359  1696
[4039] {cap.color=n,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.2087642  0.7709091 0.2708026 1.3591288  1696
[4040] {cap.color=n,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.2087642  1.0000000 0.2087642 1.0265353  1696
[4041] {cap.color=n,                                                                                              
        gill.attachment=f}          => {stalk.shape=t}              0.2087642  0.8130393 0.2567701 1.4334052  1696
[4042] {cap.color=n,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.2087642  1.0000000 0.2087642 1.0252398  1696
[4043] {cap.color=n,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.2087642  0.8107075 0.2575086 1.4292941  1696
[4044] {cap.color=n,                                                                                              
        bruises=f}                  => {gill.spacing=c}             0.1413097  0.8039216 0.1757755 0.9587579  1148
[4045] {cap.color=n,                                                                                              
        gill.spacing=c}             => {bruises=f}                  0.1413097  0.5728543 0.2466765 0.9801744  1148
[4046] {cap.color=n,                                                                                              
        bruises=f}                  => {ring.number=o}              0.1723289  0.9803922 0.1757755 1.0636626  1400
[4047] {cap.color=n,                                                                                              
        ring.number=o}              => {bruises=f}                  0.1723289  0.6363636 0.2708026 1.0888412  1400
[4048] {cap.color=n,                                                                                              
        bruises=f}                  => {gill.attachment=f}          0.1514032  0.8613445 0.1757755 0.8842005  1230
[4049] {cap.color=n,                                                                                              
        gill.attachment=f}          => {bruises=f}                  0.1514032  0.5896453 0.2567701 1.0089044  1230
[4050] {cap.color=n,                                                                                              
        bruises=f}                  => {veil.color=w}               0.1521418  0.8655462 0.1757755 0.8873924  1236
[4051] {cap.color=n,                                                                                              
        veil.color=w}               => {bruises=f}                  0.1521418  0.5908222 0.2575086 1.0109182  1236
[4052] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1582964  0.8180662 0.1935007 1.2839972  1286
[4053] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1582964  0.7709832 0.2053176 1.2689359  1286
[4054] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.size=b}                0.1171837  0.6055980 0.1935007 0.8766710   952
[4055] {cap.color=n,                                                                                              
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1171837  0.7906977 0.1482029 1.3013833   952
[4056] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1762678  0.9109415 0.1935007 1.0863900  1432
[4057] {cap.color=n,                                                                                              
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.1762678  0.7145709 0.2466765 1.1760887  1432
[4058] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.1866076  0.9643766 0.1935007 1.0462868  1516
[4059] {cap.color=n,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1866076  0.6890909 0.2708026 1.1341521  1516
[4060] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1698671  0.8778626 0.1935007 0.9011569  1380
[4061] {cap.color=n,                                                                                              
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.1698671  0.6615532 0.2567701 1.0888287  1380
[4062] {cap.color=n,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.1698671  0.8778626 0.1935007 0.9000197  1380
[4063] {cap.color=n,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1698671  0.6596558 0.2575086 1.0857058  1380
[4064] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.size=b}                0.1290005  0.6282974 0.2053176 0.9095310  1048
[4065] {cap.color=n,                                                                                              
        gill.size=b}                => {stalk.surface.above.ring=s} 0.1290005  0.8704319 0.1482029 1.3661879  1048
[4066] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1880847  0.9160671 0.2053176 1.0925029  1528
[4067] {cap.color=n,                                                                                              
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.1880847  0.7624750 0.2466765 1.1967441  1528
[4068] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.1984244  0.9664269 0.2053176 1.0485112  1612
[4069] {cap.color=n,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1984244  0.7327273 0.2708026 1.1500534  1612
[4070] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1816839  0.8848921 0.2053176 0.9083729  1476
[4071] {cap.color=n,                                                                                              
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.1816839  0.7075743 0.2567701 1.1105745  1476
[4072] {cap.color=n,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.1816839  0.8848921 0.2053176 0.9072266  1476
[4073] {cap.color=n,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1816839  0.7055449 0.2575086 1.1073893  1476
[4074] {cap.color=n,                                                                                              
        gill.size=b}                => {gill.spacing=c}             0.1166913  0.7873754 0.1482029 0.9390249   948
[4075] {cap.color=n,                                                                                              
        gill.size=b}                => {ring.number=o}              0.1378631  0.9302326 0.1482029 1.0092427  1120
[4076] {cap.color=n,                                                                                              
        ring.number=o}              => {gill.size=b}                0.1378631  0.5090909 0.2708026 0.7369662  1120
[4077] {cap.color=n,                                                                                              
        gill.size=b}                => {gill.attachment=f}          0.1238306  0.8355482 0.1482029 0.8577197  1006
[4078] {cap.color=n,                                                                                              
        gill.size=b}                => {veil.color=w}               0.1245692  0.8405316 0.1482029 0.8617464  1012
[4079] {cap.color=n,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.2363368  0.9580838 0.2466765 1.0394595  1920
[4080] {cap.color=n,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.2363368  0.8727273 0.2708026 1.0408157  1920
[4081] {cap.color=n,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.2223043  0.9011976 0.2466765 0.9251111  1806
[4082] {cap.color=n,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.2223043  0.8657718 0.2567701 1.0325206  1806
[4083] {cap.color=n,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.2230428  0.9041916 0.2466765 0.9270132  1812
[4084] {cap.color=n,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.2230428  0.8661568 0.2575086 1.0329797  1812
[4085] {cap.color=n,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.2471689  0.9127273 0.2708026 0.9369467  2008
[4086] {cap.color=n,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.2471689  0.9626079 0.2567701 1.0443678  2008
[4087] {cap.color=n,                                                                                              
        ring.number=o}              => {veil.color=w}               0.2471689  0.9127273 0.2708026 0.9357643  2008
[4088] {cap.color=n,                                                                                              
        veil.color=w}               => {ring.number=o}              0.2471689  0.9598470 0.2575086 1.0413725  2008
[4089] {cap.color=n,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.2567701  1.0000000 0.2567701 1.0252398  2086
[4090] {cap.color=n,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.2567701  0.9971319 0.2575086 1.0235911  2086
[4091] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1063516  0.8000000 0.1329394 2.7399663   864
[4092] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1063516  0.7632509 0.1393402 2.6912544   864
[4093] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1683900  0.7600000 0.2215657 1.7560410  1368
[4094] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1683900  0.9500000 0.1772526 3.2537099  1368
[4095] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1683900  0.9071618 0.1856228 3.1986903  1368
[4096] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1004431  0.8292683 0.1211226 2.8402089   816
[4097] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1004431  0.8127490 0.1235844 2.8657869   816
[4098] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.7200000 0.2215657 1.5490678  1296
[4099] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1595273  1.0000000 0.1595273 3.4249578  1296
[4100] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1595273  1.0000000 0.1595273 3.5260417  1296
[4101] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {class=p}                    0.2127031  0.9600000 0.2215657 1.9915832  1728
[4102] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.2127031  0.8000000 0.2658789 2.7399663  1728
[4103] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.2127031  0.7755835 0.2742491 2.7347397  1728
[4104] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {population=v}               0.1329394  0.6000000 0.2215657 1.2065347  1080
[4105] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {stalk.surface.above.ring=k} 0.1329394  0.7142857 0.1861152 2.4463985  1080
[4106] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {stalk.surface.below.ring=k} 0.1329394  0.6994819 0.1900542 2.4664022  1080
[4107] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {bruises=f}                  0.2215657  1.0000000 0.2215657 1.7110362  1800
[4108] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.2215657  0.7812500 0.2836041 2.6757483  1800
[4109] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.2215657  0.7588533 0.2919744 2.6757483  1800
[4110] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {gill.size=b}                0.1683900  0.7600000 0.2215657 1.1001853  1368
[4111] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.1683900  0.9500000 0.1772526 3.2537099  1368
[4112] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.1683900  0.9268293 0.1816839 3.2680386  1368
[4113] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.2127031  0.9600000 0.2215657 1.1448972  1728
[4114] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.2127031  0.8000000 0.2658789 2.7399663  1728
[4115] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.2127031  0.7755835 0.2742491 2.7347397  1728
[4116] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {ring.number=o}              0.2127031  0.9600000 0.2215657 1.0415385  1728
[4117] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {stalk.surface.above.ring=k} 0.2127031  0.8000000 0.2658789 2.7399663  1728
[4118] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {stalk.surface.below.ring=k} 0.2127031  0.7883212 0.2698178 2.7796533  1728
[4119] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.2215657  1.0000000 0.2215657 1.0265353  1800
[4120] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {stalk.surface.above.ring=k} 0.2215657  0.7812500 0.2836041 2.6757483  1800
[4121] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {stalk.surface.below.ring=k} 0.2215657  0.7646559 0.2897587 2.6962086  1800
[4122] {stalk.surface.above.ring=k,                                                                               
        stalk.surface.below.ring=k} => {veil.color=w}               0.2215657  1.0000000 0.2215657 1.0252398  1800
[4123] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {stalk.surface.above.ring=k} 0.2215657  0.7812500 0.2836041 2.6757483  1800
[4124] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {stalk.surface.below.ring=k} 0.2215657  0.7588533 0.2919744 2.6757483  1800
[4125] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {stalk.root=?}               0.1240768  1.0000000 0.1240768 3.2758065  1008
[4126] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {spore.print.color=w}        0.1240768  1.0000000 0.1240768 3.4020101  1008
[4127] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {gill.size=n}                0.1063516  0.8571429 0.1240768 2.7720655   864
[4128] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[4129] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {ring.type=e}                0.1063516  0.8571429 0.1240768 2.5084397   864
[4130] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[4131] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {class=p}                    0.1063516  0.8571429 0.1240768 1.7781993   864
[4132] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {population=v}               0.1063516  0.8571429 0.1240768 1.7236209   864
[4133] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {spore.print.color=w}        0.1063516  0.5714286 0.1861152 1.9440057   864
[4134] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.8571429 0.1240768 1.5111607   864
[4135] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[4136] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[4137] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {bruises=f}                  0.1240768  1.0000000 0.1240768 1.7110362  1008
[4138] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {gill.spacing=c}             0.1063516  0.8571429 0.1240768 1.0222297   864
[4139] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {ring.number=o}              0.1063516  0.8571429 0.1240768 0.9299451   864
[4140] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[4141] {stalk.surface.below.ring=k,                                                                               
        spore.print.color=w}        => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[4142] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {gill.size=n}                0.1063516  0.8571429 0.1240768 2.7720655   864
[4143] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[4144] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {ring.type=e}                0.1063516  0.8571429 0.1240768 2.5084397   864
[4145] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[4146] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {class=p}                    0.1063516  0.8571429 0.1240768 1.7781993   864
[4147] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {population=v}               0.1063516  0.8571429 0.1240768 1.7236209   864
[4148] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {stalk.root=?}               0.1063516  0.5714286 0.1861152 1.8718894   864
[4149] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {stalk.shape=t}              0.1063516  0.8571429 0.1240768 1.5111607   864
[4150] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[4151] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.surface.below.ring=k} 0.1063516  0.5000000 0.2127031 1.7630208   864
[4152] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {bruises=f}                  0.1240768  1.0000000 0.1240768 1.7110362  1008
[4153] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1063516  0.8571429 0.1240768 1.0222297   864
[4154] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {ring.number=o}              0.1063516  0.8571429 0.1240768 0.9299451   864
[4155] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[4156] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=k} => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[4157] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[4158] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[4159] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[4160] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[4161] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {gill.size=n}                0.1063516  0.5714286 0.1861152 1.8480437   864
[4162] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[4163] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[4164] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[4165] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[4166] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[4167] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[4168] {gill.size=n,                                                                                              
        stalk.surface.below.ring=k} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[4169] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[4170] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[4171] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {ring.type=e}                0.1063516  0.5714286 0.1861152 1.6722931   864
[4172] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {stalk.shape=t}              0.1063516  1.0000000 0.1063516 1.7630208   864
[4173] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[4174] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[4175] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[4176] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[4177] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[4178] {stalk.surface.below.ring=k,                                                                               
        ring.type=e}                => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[4179] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {class=p}                    0.1152142  1.0000000 0.1152142 2.0745659   936
[4180] {class=p,                                                                                                  
        cap.shape=f}                => {stalk.surface.below.ring=k} 0.1152142  0.6015424 0.1915313 2.1210636   936
[4181] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {bruises=f}                  0.1152142  1.0000000 0.1152142 1.7110362   936
[4182] {cap.shape=f,                                                                                              
        bruises=f}                  => {stalk.surface.below.ring=k} 0.1152142  0.5336374 0.2159035 1.8816277   936
[4183] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1152142  1.0000000 0.1152142 1.1926013   936
[4184] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {ring.number=o}              0.1152142  1.0000000 0.1152142 1.0849359   936
[4185] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1152142  1.0000000 0.1152142 1.0265353   936
[4186] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=k} => {veil.color=w}               0.1152142  1.0000000 0.1152142 1.0252398   936
[4187] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {class=p}                    0.1329394  1.0000000 0.1329394 2.0745659  1080
[4188] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {cap.surface=y}              0.1329394  0.5000000 0.2658789 1.2521578  1080
[4189] {class=p,                                                                                                  
        cap.surface=y}              => {stalk.surface.below.ring=k} 0.1329394  0.6206897 0.2141802 2.1885776  1080
[4190] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {bruises=f}                  0.1329394  1.0000000 0.1329394 1.7110362  1080
[4191] {cap.surface=y,                                                                                            
        bruises=f}                  => {stalk.surface.below.ring=k} 0.1329394  0.6537530 0.2033481 2.3051604  1080
[4192] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1329394  1.0000000 0.1329394 1.1926013  1080
[4193] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {cap.surface=y}              0.1329394  0.5000000 0.2658789 1.2521578  1080
[4194] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {ring.number=o}              0.1329394  1.0000000 0.1329394 1.0849359  1080
[4195] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {cap.surface=y}              0.1329394  0.5000000 0.2658789 1.2521578  1080
[4196] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1329394  1.0000000 0.1329394 1.0265353  1080
[4197] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=k} => {veil.color=w}               0.1329394  1.0000000 0.1329394 1.0252398  1080
[4198] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.9000000 0.1772526 1.9363347  1296
[4199] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[4200] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {stalk.surface.below.ring=k} 0.1595273  0.7788462 0.2048252 2.7462440  1296
[4201] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {class=p}                    0.1595273  0.9000000 0.1772526 1.8671093  1296
[4202] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[4203] {class=p,                                                                                                  
        stalk.shape=e}              => {stalk.surface.below.ring=k} 0.1595273  0.6821053 0.2338749 2.4051316  1296
[4204] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {bruises=f}                  0.1772526  1.0000000 0.1772526 1.7110362  1440
[4205] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1772526  0.6250000 0.2836041 1.4441126  1440
[4206] {bruises=f,                                                                                                
        stalk.shape=e}              => {stalk.surface.below.ring=k} 0.1772526  0.6394316 0.2772033 2.2546625  1440
[4207] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {gill.size=b}                0.1772526  1.0000000 0.1772526 1.4476123  1440
[4208] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1772526  1.0000000 0.1772526 2.3105802  1440
[4209] {gill.size=b,                                                                                              
        stalk.shape=e}              => {stalk.surface.below.ring=k} 0.1772526  0.5091938 0.3481044 1.7954385  1440
[4210] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1595273  0.9000000 0.1772526 1.0733412  1296
[4211] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[4212] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {ring.number=o}              0.1595273  0.9000000 0.1772526 0.9764423  1296
[4213] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {stalk.shape=e}              0.1595273  0.6000000 0.2658789 1.3863481  1296
[4214] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[4215] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {stalk.shape=e}              0.1772526  0.6250000 0.2836041 1.4441126  1440
[4216] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=k} => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[4217] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {stalk.shape=e}              0.1772526  0.6250000 0.2836041 1.4441126  1440
[4218] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {class=p}                    0.1152142  0.9512195 0.1211226 1.9733675   936
[4219] {class=p,                                                                                                  
        cap.shape=x}                => {stalk.surface.below.ring=k} 0.1152142  0.5480094 0.2102413 1.9323039   936
[4220] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {bruises=f}                  0.1211226  1.0000000 0.1211226 1.7110362   984
[4221] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1152142  0.9512195 0.1211226 1.1344256   936
[4222] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {ring.number=o}              0.1152142  0.9512195 0.1211226 1.0320122   936
[4223] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1211226  1.0000000 0.1211226 1.0265353   984
[4224] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=k} => {veil.color=w}               0.1211226  1.0000000 0.1211226 1.0252398   984
[4225] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[4226] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.6000000 0.2658789 1.2908898  1296
[4227] {class=p,                                                                                                  
        stalk.root=b}               => {stalk.surface.below.ring=k} 0.1595273  0.6982759 0.2284589 2.4621498  1296
[4228] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[4229] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.5625000 0.2836041 1.2102092  1296
[4230] {bruises=f,                                                                                                
        stalk.root=b}               => {stalk.surface.below.ring=k} 0.1595273  0.8350515 0.1910389 2.9444265  1296
[4231] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[4232] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.9000000 0.1772526 1.9363347  1296
[4233] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[4234] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.6000000 0.2658789 1.2908898  1296
[4235] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[4236] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {stalk.root=b}               0.1595273  0.6000000 0.2658789 1.2908898  1296
[4237] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[4238] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {stalk.root=b}               0.1595273  0.5625000 0.2836041 1.2102092  1296
[4239] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=k} => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[4240] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {stalk.root=b}               0.1595273  0.5625000 0.2836041 1.2102092  1296
[4241] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {population=v}               0.1861152  0.7000000 0.2658789 1.4076238  1512
[4242] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {class=p}                    0.1861152  1.0000000 0.1861152 2.0745659  1512
[4243] {class=p,                                                                                                  
        population=v}               => {stalk.surface.below.ring=k} 0.1861152  0.5308989 0.3505662 1.8719716  1512
[4244] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[4245] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {bruises=f}                  0.2658789  1.0000000 0.2658789 1.7110362  2160
[4246] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {class=p}                    0.2658789  0.9375000 0.2836041 1.9449055  2160
[4247] {class=p,                                                                                                  
        bruises=f}                  => {stalk.surface.below.ring=k} 0.2658789  0.6561361 0.4052191 2.3135632  2160
[4248] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {gill.size=b}                0.1595273  0.6000000 0.2658789 0.8685674  1296
[4249] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {class=p}                    0.1595273  0.9000000 0.1772526 1.8671093  1296
[4250] {class=p,                                                                                                  
        gill.size=b}                => {stalk.surface.below.ring=k} 0.1595273  0.7659574 0.2082718 2.7007979  1296
[4251] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[4252] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[4253] {class=p,                                                                                                  
        gill.spacing=c}             => {stalk.surface.below.ring=k} 0.2658789  0.5678233 0.4682422 2.0021688  2160
[4254] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[4255] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {class=p}                    0.2658789  1.0000000 0.2658789 2.0745659  2160
[4256] {class=p,                                                                                                  
        ring.number=o}              => {stalk.surface.below.ring=k} 0.2658789  0.5672269 0.4687346 2.0000657  2160
[4257] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[4258] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {class=p}                    0.2658789  0.9375000 0.2836041 1.9449055  2160
[4259] {class=p,                                                                                                  
        gill.attachment=f}          => {stalk.surface.below.ring=k} 0.2658789  0.5541303 0.4798129 1.9538866  2160
[4260] {class=p,                                                                                                  
        stalk.surface.below.ring=k} => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[4261] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {class=p}                    0.2658789  0.9375000 0.2836041 1.9449055  2160
[4262] {class=p,                                                                                                  
        veil.color=w}               => {stalk.surface.below.ring=k} 0.2658789  0.5527124 0.4810438 1.9488869  2160
[4263] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {stalk.shape=t}              0.1063516  0.5714286 0.1861152 1.0074405   864
[4264] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[4265] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {bruises=f}                  0.1861152  1.0000000 0.1861152 1.7110362  1512
[4266] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {population=v}               0.1861152  0.6562500 0.2836041 1.3196473  1512
[4267] {bruises=f,                                                                                                
        population=v}               => {stalk.surface.below.ring=k} 0.1861152  0.5558824 0.3348104 1.9600643  1512
[4268] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {gill.spacing=c}             0.1861152  1.0000000 0.1861152 1.1926013  1512
[4269] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {population=v}               0.1861152  0.7000000 0.2658789 1.4076238  1512
[4270] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {ring.number=o}              0.1861152  1.0000000 0.1861152 1.0849359  1512
[4271] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {population=v}               0.1861152  0.7000000 0.2658789 1.4076238  1512
[4272] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {gill.attachment=f}          0.1861152  1.0000000 0.1861152 1.0265353  1512
[4273] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {population=v}               0.1861152  0.6562500 0.2836041 1.3196473  1512
[4274] {stalk.surface.below.ring=k,                                                                               
        population=v}               => {veil.color=w}               0.1861152  1.0000000 0.1861152 1.0252398  1512
[4275] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {population=v}               0.1861152  0.6562500 0.2836041 1.3196473  1512
[4276] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[4277] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[4278] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[4279] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[4280] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=k} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[4281] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {gill.size=b}                0.1772526  0.6250000 0.2836041 0.9047577  1440
[4282] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {bruises=f}                  0.1772526  1.0000000 0.1772526 1.7110362  1440
[4283] {bruises=f,                                                                                                
        gill.size=b}                => {stalk.surface.below.ring=k} 0.1772526  0.5546995 0.3195470 1.9558937  1440
[4284] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.2658789  0.9375000 0.2836041 1.1180637  2160
[4285] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {bruises=f}                  0.2658789  1.0000000 0.2658789 1.7110362  2160
[4286] {bruises=f,                                                                                                
        gill.spacing=c}             => {stalk.surface.below.ring=k} 0.2658789  0.6101695 0.4357459 2.1514831  2160
[4287] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {ring.number=o}              0.2658789  0.9375000 0.2836041 1.0171274  2160
[4288] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {bruises=f}                  0.2658789  1.0000000 0.2658789 1.7110362  2160
[4289] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.2836041  1.0000000 0.2836041 1.0265353  2304
[4290] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {bruises=f}                  0.2836041  1.0000000 0.2836041 1.7110362  2304
[4291] {bruises=f,                                                                                                
        gill.attachment=f}          => {stalk.surface.below.ring=k} 0.2836041  0.5077126 0.5585918 1.7902160  2304
[4292] {bruises=f,                                                                                                
        stalk.surface.below.ring=k} => {veil.color=w}               0.2836041  1.0000000 0.2836041 1.0252398  2304
[4293] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {bruises=f}                  0.2836041  1.0000000 0.2836041 1.7110362  2304
[4294] {bruises=f,                                                                                                
        veil.color=w}               => {stalk.surface.below.ring=k} 0.2836041  0.5065963 0.5598227 1.7862797  2304
[4295] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.1595273  0.9000000 0.1772526 1.0733412  1296
[4296] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {gill.size=b}                0.1595273  0.6000000 0.2658789 0.8685674  1296
[4297] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {ring.number=o}              0.1595273  0.9000000 0.1772526 0.9764423  1296
[4298] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {gill.size=b}                0.1595273  0.6000000 0.2658789 0.8685674  1296
[4299] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.1772526  1.0000000 0.1772526 1.0265353  1440
[4300] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {gill.size=b}                0.1772526  0.6250000 0.2836041 0.9047577  1440
[4301] {gill.size=b,                                                                                              
        stalk.surface.below.ring=k} => {veil.color=w}               0.1772526  1.0000000 0.1772526 1.0252398  1440
[4302] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {gill.size=b}                0.1772526  0.6250000 0.2836041 0.9047577  1440
[4303] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {ring.number=o}              0.2658789  1.0000000 0.2658789 1.0849359  2160
[4304] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {gill.spacing=c}             0.2658789  1.0000000 0.2658789 1.1926013  2160
[4305] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[4306] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {gill.spacing=c}             0.2658789  0.9375000 0.2836041 1.1180637  2160
[4307] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=k} => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[4308] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {gill.spacing=c}             0.2658789  0.9375000 0.2836041 1.1180637  2160
[4309] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {gill.attachment=f}          0.2658789  1.0000000 0.2658789 1.0265353  2160
[4310] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {ring.number=o}              0.2658789  0.9375000 0.2836041 1.0171274  2160
[4311] {stalk.surface.below.ring=k,                                                                               
        ring.number=o}              => {veil.color=w}               0.2658789  1.0000000 0.2658789 1.0252398  2160
[4312] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {ring.number=o}              0.2658789  0.9375000 0.2836041 1.0171274  2160
[4313] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=k} => {veil.color=w}               0.2836041  1.0000000 0.2836041 1.0252398  2304
[4314] {stalk.surface.below.ring=k,                                                                               
        veil.color=w}               => {gill.attachment=f}          0.2836041  1.0000000 0.2836041 1.0265353  2304
[4315] {cap.surface=f,                                                                                            
        habitat=d}                  => {bruises=t}                  0.1122600  0.7354839 0.1526342 1.7698670   912
[4316] {cap.surface=f,                                                                                            
        bruises=t}                  => {habitat=d}                  0.1122600  1.0000000 0.1122600 2.5806861   912
[4317] {bruises=t,                                                                                                
        habitat=d}                  => {cap.surface=f}              0.1122600  0.5000000 0.2245199 1.7508621   912
[4318] {cap.surface=f,                                                                                            
        habitat=d}                  => {odor=n}                     0.1083210  0.7096774 0.1526342 1.6341892   880
[4319] {cap.surface=f,                                                                                            
        odor=n}                     => {habitat=d}                  0.1083210  0.5759162 0.1880847 1.4862590   880
[4320] {cap.surface=f,                                                                                            
        habitat=d}                  => {stalk.root=b}               0.1506647  0.9870968 0.1526342 2.1237220  1224
[4321] {cap.surface=f,                                                                                            
        stalk.root=b}               => {habitat=d}                  0.1506647  0.7285714 0.2067947 1.8802142  1224
[4322] {cap.surface=f,                                                                                            
        habitat=d}                  => {ring.type=p}                0.1240768  0.8129032 0.1526342 1.6643210  1008
[4323] {cap.surface=f,                                                                                            
        ring.type=p}                => {habitat=d}                  0.1240768  0.8076923 0.1536189 2.0844004  1008
[4324] {cap.surface=f,                                                                                            
        habitat=d}                  => {class=e}                    0.1122600  0.7354839 0.1526342 1.4199313   912
[4325] {class=e,                                                                                                  
        cap.surface=f}              => {habitat=d}                  0.1122600  0.5846154 0.1920236 1.5087088   912
[4326] {cap.surface=f,                                                                                            
        habitat=d}                  => {stalk.shape=t}              0.1122600  0.7354839 0.1526342 1.2966734   912
[4327] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {habitat=d}                  0.1122600  0.7037037 0.1595273 1.8160384   912
[4328] {cap.surface=f,                                                                                            
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  0.8129032 0.1526342 1.3379307  1008
[4329] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {habitat=d}                  0.1240768  0.7304348 0.1698671 1.8850229  1008
[4330] {cap.surface=f,                                                                                            
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1240768  0.8129032 0.1526342 1.2758937  1008
[4331] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {habitat=d}                  0.1240768  0.7304348 0.1698671 1.8850229  1008
[4332] {cap.surface=f,                                                                                            
        habitat=d}                  => {gill.size=b}                0.1329394  0.8709677 0.1526342 1.2608236  1080
[4333] {cap.surface=f,                                                                                            
        gill.size=b}                => {habitat=d}                  0.1329394  0.5294118 0.2511078 1.3662456  1080
[4334] {cap.surface=f,                                                                                            
        habitat=d}                  => {gill.spacing=c}             0.1408173  0.9225806 0.1526342 1.1002709  1144
[4335] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {habitat=d}                  0.1408173  0.6842105 0.2058099 1.7657326  1144
[4336] {cap.surface=f,                                                                                            
        habitat=d}                  => {ring.number=o}              0.1526342  1.0000000 0.1526342 1.0849359  1240
[4337] {cap.surface=f,                                                                                            
        ring.number=o}              => {habitat=d}                  0.1526342  0.5698529 0.2678484 1.4706116  1240
[4338] {cap.surface=f,                                                                                            
        habitat=d}                  => {gill.attachment=f}          0.1526342  1.0000000 0.1526342 1.0265353  1240
[4339] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {habitat=d}                  0.1526342  0.5344828 0.2855736 1.3793323  1240
[4340] {cap.surface=f,                                                                                            
        habitat=d}                  => {veil.color=w}               0.1526342  1.0000000 0.1526342 1.0252398  1240
[4341] {cap.surface=f,                                                                                            
        veil.color=w}               => {habitat=d}                  0.1526342  0.5344828 0.2855736 1.3793323  1240
[4342] {cap.shape=f,                                                                                              
        cap.surface=f}              => {gill.size=b}                0.1166913  0.9330709 0.1250615 1.3507248   948
[4343] {cap.shape=f,                                                                                              
        cap.surface=f}              => {ring.number=o}              0.1250615  1.0000000 0.1250615 1.0849359  1016
[4344] {cap.shape=f,                                                                                              
        cap.surface=f}              => {gill.attachment=f}          0.1250615  1.0000000 0.1250615 1.0265353  1016
[4345] {cap.shape=f,                                                                                              
        cap.surface=f}              => {veil.color=w}               0.1250615  1.0000000 0.1250615 1.0252398  1016
[4346] {cap.surface=f,                                                                                            
        bruises=t}                  => {odor=n}                     0.1063516  0.9473684 0.1122600 2.1815252   864
[4347] {cap.surface=f,                                                                                            
        odor=n}                     => {bruises=t}                  0.1063516  0.5654450 0.1880847 1.3606858   864
[4348] {cap.surface=f,                                                                                            
        bruises=t}                  => {stalk.root=b}               0.1122600  1.0000000 0.1122600 2.1514831   912
[4349] {cap.surface=f,                                                                                            
        stalk.root=b}               => {bruises=t}                  0.1122600  0.5428571 0.2067947 1.3063304   912
[4350] {cap.surface=f,                                                                                            
        bruises=t}                  => {ring.type=p}                0.1122600  1.0000000 0.1122600 2.0473790   912
[4351] {cap.surface=f,                                                                                            
        ring.type=p}                => {bruises=t}                  0.1122600  0.7307692 0.1536189 1.7585217   912
[4352] {cap.surface=f,                                                                                            
        bruises=t}                  => {class=e}                    0.1122600  1.0000000 0.1122600 1.9306084   912
[4353] {class=e,                                                                                                  
        cap.surface=f}              => {bruises=t}                  0.1122600  0.5846154 0.1920236 1.4068174   912
[4354] {cap.surface=f,                                                                                            
        bruises=t}                  => {stalk.shape=t}              0.1122600  1.0000000 0.1122600 1.7630208   912
[4355] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {bruises=t}                  0.1122600  0.7037037 0.1595273 1.6933913   912
[4356] {cap.surface=f,                                                                                            
        bruises=t}                  => {stalk.surface.below.ring=s} 0.1122600  1.0000000 0.1122600 1.6458671   912
[4357] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {bruises=t}                  0.1122600  0.6608696 0.1698671 1.5903153   912
[4358] {cap.surface=f,                                                                                            
        bruises=t}                  => {stalk.surface.above.ring=s} 0.1122600  1.0000000 0.1122600 1.5695518   912
[4359] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {bruises=t}                  0.1122600  0.6608696 0.1698671 1.5903153   912
[4360] {cap.surface=f,                                                                                            
        bruises=t}                  => {gill.size=b}                0.1063516  0.9473684 0.1122600 1.3714221   864
[4361] {cap.surface=f,                                                                                            
        bruises=t}                  => {gill.spacing=c}             0.1063516  0.9473684 0.1122600 1.1298328   864
[4362] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {bruises=t}                  0.1063516  0.5167464 0.2058099 1.2434976   864
[4363] {cap.surface=f,                                                                                            
        bruises=t}                  => {ring.number=o}              0.1122600  1.0000000 0.1122600 1.0849359   912
[4364] {cap.surface=f,                                                                                            
        bruises=t}                  => {gill.attachment=f}          0.1122600  1.0000000 0.1122600 1.0265353   912
[4365] {cap.surface=f,                                                                                            
        bruises=t}                  => {veil.color=w}               0.1122600  1.0000000 0.1122600 1.0252398   912
[4366] {cap.surface=f,                                                                                            
        stalk.shape=e}              => {bruises=f}                  0.1260463  1.0000000 0.1260463 1.7110362  1024
[4367] {cap.surface=f,                                                                                            
        bruises=f}                  => {stalk.shape=e}              0.1260463  0.7272727 0.1733136 1.6804220  1024
[4368] {cap.surface=f,                                                                                            
        stalk.shape=e}              => {ring.number=o}              0.1083210  0.8593750 0.1260463 0.9323668   880
[4369] {cap.surface=f,                                                                                            
        stalk.shape=e}              => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[4370] {cap.surface=f,                                                                                            
        stalk.shape=e}              => {veil.color=w}               0.1260463  1.0000000 0.1260463 1.0252398  1024
[4371] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.root=b}               0.1093058  0.5811518 0.1880847 1.2503383   888
[4372] {cap.surface=f,                                                                                            
        stalk.root=b}               => {odor=n}                     0.1093058  0.5285714 0.2067947 1.2171526   888
[4373] {cap.surface=f,                                                                                            
        odor=n}                     => {ring.type=p}                0.1358936  0.7225131 0.1880847 1.4792581  1104
[4374] {cap.surface=f,                                                                                            
        ring.type=p}                => {odor=n}                     0.1358936  0.8846154 0.1536189 2.0370225  1104
[4375] {cap.surface=f,                                                                                            
        odor=n}                     => {class=e}                    0.1861152  0.9895288 0.1880847 1.9103926  1512
[4376] {class=e,                                                                                                  
        cap.surface=f}              => {odor=n}                     0.1861152  0.9692308 0.1920236 2.2318681  1512
[4377] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.color.below.ring=w}   0.1122600  0.5968586 0.1880847 1.1060401   912
[4378] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {odor=n}                     0.1122600  0.8636364 0.1299852 1.9887137   912
[4379] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.color.above.ring=w}   0.1171837  0.6230366 0.1880847 1.1338597   952
[4380] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {odor=n}                     0.1171837  0.8686131 0.1349089 2.0001738   952
[4381] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.shape=t}              0.1536189  0.8167539 0.1880847 1.4399542  1248
[4382] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {odor=n}                     0.1536189  0.9629630 0.1595273 2.2174351  1248
[4383] {odor=n,                                                                                                   
        stalk.shape=t}              => {cap.surface=f}              0.1536189  0.5000000 0.3072378 1.7508621  1248
[4384] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.surface.below.ring=s} 0.1521418  0.8089005 0.1880847 1.3313428  1236
[4385] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {odor=n}                     0.1521418  0.8956522 0.1698671 2.0624371  1236
[4386] {cap.surface=f,                                                                                            
        odor=n}                     => {stalk.surface.above.ring=s} 0.1521418  0.8089005 0.1880847 1.2696113  1236
[4387] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {odor=n}                     0.1521418  0.8956522 0.1698671 2.0624371  1236
[4388] {cap.surface=f,                                                                                            
        odor=n}                     => {gill.size=b}                0.1713442  0.9109948 0.1880847 1.3187672  1392
[4389] {cap.surface=f,                                                                                            
        gill.size=b}                => {odor=n}                     0.1713442  0.6823529 0.2511078 1.5712685  1392
[4390] {cap.surface=f,                                                                                            
        odor=n}                     => {gill.spacing=c}             0.1201379  0.6387435 0.1880847 0.7617663   976
[4391] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {odor=n}                     0.1201379  0.5837321 0.2058099 1.3441721   976
[4392] {cap.surface=f,                                                                                            
        odor=n}                     => {ring.number=o}              0.1703594  0.9057592 0.1880847 0.9826906  1384
[4393] {cap.surface=f,                                                                                            
        ring.number=o}              => {odor=n}                     0.1703594  0.6360294 0.2678484 1.4645983  1384
[4394] {cap.surface=f,                                                                                            
        odor=n}                     => {gill.attachment=f}          0.1880847  1.0000000 0.1880847 1.0265353  1528
[4395] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {odor=n}                     0.1880847  0.6586207 0.2855736 1.5166198  1528
[4396] {cap.surface=f,                                                                                            
        odor=n}                     => {veil.color=w}               0.1880847  1.0000000 0.1880847 1.0252398  1528
[4397] {cap.surface=f,                                                                                            
        veil.color=w}               => {odor=n}                     0.1880847  0.6586207 0.2855736 1.5166198  1528
[4398] {cap.shape=x,                                                                                              
        cap.surface=f}              => {stalk.root=b}               0.1088134  0.7620690 0.1427868 1.6395785   884
[4399] {cap.surface=f,                                                                                            
        stalk.root=b}               => {cap.shape=x}                0.1088134  0.5261905 0.2067947 1.1692482   884
[4400] {cap.shape=x,                                                                                              
        cap.surface=f}              => {gill.size=b}                0.1225997  0.8586207 0.1427868 1.2429498   996
[4401] {cap.shape=x,                                                                                              
        cap.surface=f}              => {gill.spacing=c}             0.1033973  0.7241379 0.1427868 0.8636078   840
[4402] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {cap.shape=x}                0.1033973  0.5023923 0.2058099 1.1163664   840
[4403] {cap.shape=x,                                                                                              
        cap.surface=f}              => {ring.number=o}              0.1368784  0.9586207 0.1427868 1.0400420  1112
[4404] {cap.surface=f,                                                                                            
        ring.number=o}              => {cap.shape=x}                0.1368784  0.5110294 0.2678484 1.1355588  1112
[4405] {cap.shape=x,                                                                                              
        cap.surface=f}              => {gill.attachment=f}          0.1427868  1.0000000 0.1427868 1.0265353  1160
[4406] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {cap.shape=x}                0.1427868  0.5000000 0.2855736 1.1110503  1160
[4407] {cap.shape=x,                                                                                              
        cap.surface=f}              => {veil.color=w}               0.1427868  1.0000000 0.1427868 1.0252398  1160
[4408] {cap.surface=f,                                                                                            
        veil.color=w}               => {cap.shape=x}                0.1427868  0.5000000 0.2855736 1.1110503  1160
[4409] {cap.surface=f,                                                                                            
        stalk.root=b}               => {ring.type=p}                0.1240768  0.6000000 0.2067947 1.2284274  1008
[4410] {cap.surface=f,                                                                                            
        ring.type=p}                => {stalk.root=b}               0.1240768  0.8076923 0.1536189 1.7377363  1008
[4411] {cap.surface=f,                                                                                            
        stalk.root=b}               => {population=v}               0.1078287  0.5214286 0.2067947 1.0485361   876
[4412] {cap.surface=f,                                                                                            
        population=v}               => {stalk.root=b}               0.1078287  0.9319149 0.1157065 2.0049991   876
[4413] {cap.surface=f,                                                                                            
        stalk.root=b}               => {class=e}                    0.1152142  0.5571429 0.2067947 1.0756247   936
[4414] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.root=b}               0.1152142  0.6000000 0.1920236 1.2908898   936
[4415] {cap.surface=f,                                                                                            
        stalk.root=b}               => {stalk.shape=t}              0.1122600  0.5428571 0.2067947 0.9570685   912
[4416] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {stalk.root=b}               0.1122600  0.7037037 0.1595273 1.5140066   912
[4417] {cap.surface=f,                                                                                            
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.1255539  0.6071429 0.2067947 0.9992765  1020
[4418] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {stalk.root=b}               0.1255539  0.7391304 0.1698671 1.5902266  1020
[4419] {cap.surface=f,                                                                                            
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.1255539  0.6071429 0.2067947 0.9529422  1020
[4420] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {stalk.root=b}               0.1255539  0.7391304 0.1698671 1.5902266  1020
[4421] {cap.surface=f,                                                                                            
        stalk.root=b}               => {gill.size=b}                0.1861152  0.9000000 0.2067947 1.3028510  1512
[4422] {cap.surface=f,                                                                                            
        gill.size=b}                => {stalk.root=b}               0.1861152  0.7411765 0.2511078 1.5946286  1512
[4423] {cap.surface=f,                                                                                            
        stalk.root=b}               => {gill.spacing=c}             0.1920236  0.9285714 0.2067947 1.1074155  1560
[4424] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {stalk.root=b}               0.1920236  0.9330144 0.2058099 2.0073646  1560
[4425] {cap.surface=f,                                                                                            
        stalk.root=b}               => {ring.number=o}              0.2067947  1.0000000 0.2067947 1.0849359  1680
[4426] {cap.surface=f,                                                                                            
        ring.number=o}              => {stalk.root=b}               0.2067947  0.7720588 0.2678484 1.6610715  1680
[4427] {cap.surface=f,                                                                                            
        stalk.root=b}               => {gill.attachment=f}          0.2067947  1.0000000 0.2067947 1.0265353  1680
[4428] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {stalk.root=b}               0.2067947  0.7241379 0.2855736 1.5579705  1680
[4429] {cap.surface=f,                                                                                            
        stalk.root=b}               => {veil.color=w}               0.2067947  1.0000000 0.2067947 1.0252398  1680
[4430] {cap.surface=f,                                                                                            
        veil.color=w}               => {stalk.root=b}               0.2067947  0.7241379 0.2855736 1.5579705  1680
[4431] {cap.surface=f,                                                                                            
        ring.type=p}                => {class=e}                    0.1418021  0.9230769 0.1536189 1.7821000  1152
[4432] {class=e,                                                                                                  
        cap.surface=f}              => {ring.type=p}                0.1418021  0.7384615 0.1920236 1.5119107  1152
[4433] {cap.surface=f,                                                                                            
        ring.type=p}                => {stalk.shape=t}              0.1122600  0.7307692 0.1536189 1.2883614   912
[4434] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {ring.type=p}                0.1122600  0.7037037 0.1595273 1.4407482   912
[4435] {cap.surface=f,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1447563  0.9423077 0.1536189 1.5509132  1176
[4436] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {ring.type=p}                0.1447563  0.8521739 0.1698671 1.7447230  1176
[4437] {cap.surface=f,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1447563  0.9423077 0.1536189 1.4790007  1176
[4438] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {ring.type=p}                0.1447563  0.8521739 0.1698671 1.7447230  1176
[4439] {cap.surface=f,                                                                                            
        ring.type=p}                => {gill.size=b}                0.1240768  0.8076923 0.1536189 1.1692253  1008
[4440] {cap.surface=f,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.1240768  0.8076923 0.1536189 0.9632549  1008
[4441] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {ring.type=p}                0.1240768  0.6028708 0.2058099 1.2343051  1008
[4442] {cap.surface=f,                                                                                            
        ring.type=p}                => {ring.number=o}              0.1358936  0.8846154 0.1536189 0.9597510  1104
[4443] {cap.surface=f,                                                                                            
        ring.number=o}              => {ring.type=p}                0.1358936  0.5073529 0.2678484 1.0387438  1104
[4444] {cap.surface=f,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.1536189  1.0000000 0.1536189 1.0265353  1248
[4445] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {ring.type=p}                0.1536189  0.5379310 0.2855736 1.1013487  1248
[4446] {cap.surface=f,                                                                                            
        ring.type=p}                => {veil.color=w}               0.1536189  1.0000000 0.1536189 1.0252398  1248
[4447] {cap.surface=f,                                                                                            
        veil.color=w}               => {ring.type=p}                0.1536189  0.5379310 0.2855736 1.1013487  1248
[4448] {cap.surface=f,                                                                                            
        population=v}               => {gill.spacing=c}             0.1038897  0.8978723 0.1157065 1.0708037   844
[4449] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {population=v}               0.1038897  0.5047847 0.2058099 1.0150670   844
[4450] {cap.surface=f,                                                                                            
        population=v}               => {ring.number=o}              0.1157065  1.0000000 0.1157065 1.0849359   940
[4451] {cap.surface=f,                                                                                            
        population=v}               => {gill.attachment=f}          0.1157065  1.0000000 0.1157065 1.0265353   940
[4452] {cap.surface=f,                                                                                            
        population=v}               => {veil.color=w}               0.1157065  1.0000000 0.1157065 1.0252398   940
[4453] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.color.below.ring=w}   0.1181684  0.6153846 0.1920236 1.1403706   960
[4454] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {class=e}                    0.1181684  0.9090909 0.1299852 1.7550985   960
[4455] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.color.above.ring=w}   0.1211226  0.6307692 0.1920236 1.1479322   984
[4456] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {class=e}                    0.1211226  0.8978102 0.1349089 1.7333199   984
[4457] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.shape=t}              0.1595273  0.8307692 0.1920236 1.4646635  1296
[4458] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {class=e}                    0.1595273  1.0000000 0.1595273 1.9306084  1296
[4459] {class=e,                                                                                                  
        stalk.shape=t}              => {cap.surface=f}              0.1595273  0.5000000 0.3190547 1.7508621  1296
[4460] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.surface.below.ring=s} 0.1580502  0.8230769 0.1920236 1.3546752  1284
[4461] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {class=e}                    0.1580502  0.9304348 0.1698671 1.7963052  1284
[4462] {class=e,                                                                                                  
        cap.surface=f}              => {stalk.surface.above.ring=s} 0.1580502  0.8230769 0.1920236 1.2918618  1284
[4463] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {class=e}                    0.1580502  0.9304348 0.1698671 1.7963052  1284
[4464] {class=e,                                                                                                  
        cap.surface=f}              => {gill.size=b}                0.1713442  0.8923077 0.1920236 1.2917156  1392
[4465] {cap.surface=f,                                                                                            
        gill.size=b}                => {class=e}                    0.1713442  0.6823529 0.2511078 1.3173563  1392
[4466] {class=e,                                                                                                  
        cap.surface=f}              => {gill.spacing=c}             0.1181684  0.6153846 0.1920236 0.7339085   960
[4467] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {class=e}                    0.1181684  0.5741627 0.2058099 1.1084833   960
[4468] {class=e,                                                                                                  
        cap.surface=f}              => {ring.number=o}              0.1742984  0.9076923 0.1920236 0.9847880  1416
[4469] {cap.surface=f,                                                                                            
        ring.number=o}              => {class=e}                    0.1742984  0.6507353 0.2678484 1.2563150  1416
[4470] {class=e,                                                                                                  
        cap.surface=f}              => {gill.attachment=f}          0.1920236  1.0000000 0.1920236 1.0265353  1560
[4471] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {class=e}                    0.1920236  0.6724138 0.2855736 1.2981677  1560
[4472] {class=e,                                                                                                  
        cap.surface=f}              => {veil.color=w}               0.1920236  1.0000000 0.1920236 1.0252398  1560
[4473] {cap.surface=f,                                                                                            
        veil.color=w}               => {class=e}                    0.1920236  0.6724138 0.2855736 1.2981677  1560
[4474] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1063516  0.8181818 0.1299852 1.4890029   864
[4475] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1063516  0.7883212 0.1349089 1.4608397   864
[4476] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {gill.size=b}                0.1004431  0.7727273 0.1299852 1.1186095   816
[4477] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {ring.number=o}              0.1122600  0.8636364 0.1299852 0.9369901   912
[4478] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1299852  1.0000000 0.1299852 1.0265353  1056
[4479] {cap.surface=f,                                                                                            
        stalk.color.below.ring=w}   => {veil.color=w}               0.1299852  1.0000000 0.1299852 1.0252398  1056
[4480] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {gill.size=b}                0.1004431  0.7445255 0.1349089 1.0777843   816
[4481] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {ring.number=o}              0.1171837  0.8686131 0.1349089 0.9423896   952
[4482] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1349089  1.0000000 0.1349089 1.0265353  1096
[4483] {cap.surface=f,                                                                                            
        stalk.color.above.ring=w}   => {veil.color=w}               0.1349089  1.0000000 0.1349089 1.0252398  1096
[4484] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1358936  0.8518519 0.1595273 1.4020349  1104
[4485] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1358936  0.8000000 0.1698671 1.4104167  1104
[4486] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1358936  0.8518519 0.1595273 1.3370256  1104
[4487] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1358936  0.8000000 0.1698671 1.4104167  1104
[4488] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {gill.size=b}                0.1536189  0.9629630 0.1595273 1.3939970  1248
[4489] {cap.surface=f,                                                                                            
        gill.size=b}                => {stalk.shape=t}              0.1536189  0.6117647 0.2511078 1.0785539  1248
[4490] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {gill.spacing=c}             0.1063516  0.6666667 0.1595273 0.7950675   864
[4491] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {stalk.shape=t}              0.1063516  0.5167464 0.2058099 0.9110347   864
[4492] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[4493] {cap.surface=f,                                                                                            
        ring.number=o}              => {stalk.shape=t}              0.1595273  0.5955882 0.2678484 1.0500345  1296
[4494] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[4495] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {stalk.shape=t}              0.1595273  0.5586207 0.2855736 0.9848599  1296
[4496] {cap.surface=f,                                                                                            
        stalk.shape=t}              => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[4497] {cap.surface=f,                                                                                            
        veil.color=w}               => {stalk.shape=t}              0.1595273  0.5586207 0.2855736 0.9848599  1296
[4498] {cap.surface=f,                                                                                            
        bruises=f}                  => {gill.size=b}                0.1447563  0.8352273 0.1733136 1.2090852  1176
[4499] {cap.surface=f,                                                                                            
        gill.size=b}                => {bruises=f}                  0.1447563  0.5764706 0.2511078 0.9863621  1176
[4500] {cap.surface=f,                                                                                            
        bruises=f}                  => {ring.number=o}              0.1555884  0.8977273 0.1733136 0.9739765  1264
[4501] {cap.surface=f,                                                                                            
        ring.number=o}              => {bruises=f}                  0.1555884  0.5808824 0.2678484 0.9939107  1264
[4502] {cap.surface=f,                                                                                            
        bruises=f}                  => {gill.attachment=f}          0.1733136  1.0000000 0.1733136 1.0265353  1408
[4503] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {bruises=f}                  0.1733136  0.6068966 0.2855736 1.0384220  1408
[4504] {cap.surface=f,                                                                                            
        bruises=f}                  => {veil.color=w}               0.1733136  1.0000000 0.1733136 1.0252398  1408
[4505] {cap.surface=f,                                                                                            
        veil.color=w}               => {bruises=f}                  0.1733136  0.6068966 0.2855736 1.0384220  1408
[4506] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1528804  0.9000000 0.1698671 1.4125966  1242
[4507] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1528804  0.9000000 0.1698671 1.4812804  1242
[4508] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {gill.size=b}                0.1388479  0.8173913 0.1698671 1.1832657  1128
[4509] {cap.surface=f,                                                                                            
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1388479  0.5529412 0.2511078 0.9100677  1128
[4510] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1240768  0.7304348 0.1698671 0.8711175  1008
[4511] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.1240768  0.6028708 0.2058099 0.9922452  1008
[4512] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {ring.number=o}              0.1610044  0.9478261 0.1698671 1.0283305  1308
[4513] {cap.surface=f,                                                                                            
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1610044  0.6011029 0.2678484 0.9893356  1308
[4514] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1698671  1.0000000 0.1698671 1.0265353  1380
[4515] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.1698671  0.5948276 0.2855736 0.9790072  1380
[4516] {cap.surface=f,                                                                                            
        stalk.surface.below.ring=s} => {veil.color=w}               0.1698671  1.0000000 0.1698671 1.0252398  1380
[4517] {cap.surface=f,                                                                                            
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1698671  0.5948276 0.2855736 0.9790072  1380
[4518] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {gill.size=b}                0.1388479  0.8173913 0.1698671 1.1832657  1128
[4519] {cap.surface=f,                                                                                            
        gill.size=b}                => {stalk.surface.above.ring=s} 0.1388479  0.5529412 0.2511078 0.8678698  1128
[4520] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1240768  0.7304348 0.1698671 0.8711175  1008
[4521] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.1240768  0.6028708 0.2058099 0.9462370  1008
[4522] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {ring.number=o}              0.1610044  0.9478261 0.1698671 1.0283305  1308
[4523] {cap.surface=f,                                                                                            
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1610044  0.6011029 0.2678484 0.9434622  1308
[4524] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1698671  1.0000000 0.1698671 1.0265353  1380
[4525] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.1698671  0.5948276 0.2855736 0.9336127  1380
[4526] {cap.surface=f,                                                                                            
        stalk.surface.above.ring=s} => {veil.color=w}               0.1698671  1.0000000 0.1698671 1.0252398  1380
[4527] {cap.surface=f,                                                                                            
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1698671  0.5948276 0.2855736 0.9336127  1380
[4528] {cap.surface=f,                                                                                            
        gill.size=b}                => {gill.spacing=c}             0.1861152  0.7411765 0.2511078 0.8839280  1512
[4529] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {gill.size=b}                0.1861152  0.9043062 0.2058099 1.3090848  1512
[4530] {cap.surface=f,                                                                                            
        gill.size=b}                => {ring.number=o}              0.2333826  0.9294118 0.2511078 1.0083522  1896
[4531] {cap.surface=f,                                                                                            
        ring.number=o}              => {gill.size=b}                0.2333826  0.8713235 0.2678484 1.2613386  1896
[4532] {cap.surface=f,                                                                                            
        gill.size=b}                => {gill.attachment=f}          0.2511078  1.0000000 0.2511078 1.0265353  2040
[4533] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {gill.size=b}                0.2511078  0.8793103 0.2855736 1.2729004  2040
[4534] {cap.surface=f,                                                                                            
        gill.size=b}                => {veil.color=w}               0.2511078  1.0000000 0.2511078 1.0252398  2040
[4535] {cap.surface=f,                                                                                            
        veil.color=w}               => {gill.size=b}                0.2511078  0.8793103 0.2855736 1.2729004  2040
[4536] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {ring.number=o}              0.2058099  1.0000000 0.2058099 1.0849359  1672
[4537] {cap.surface=f,                                                                                            
        ring.number=o}              => {gill.spacing=c}             0.2058099  0.7683824 0.2678484 0.9163738  1672
[4538] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {gill.attachment=f}          0.2058099  1.0000000 0.2058099 1.0265353  1672
[4539] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {gill.spacing=c}             0.2058099  0.7206897 0.2855736 0.8594954  1672
[4540] {cap.surface=f,                                                                                            
        gill.spacing=c}             => {veil.color=w}               0.2058099  1.0000000 0.2058099 1.0252398  1672
[4541] {cap.surface=f,                                                                                            
        veil.color=w}               => {gill.spacing=c}             0.2058099  0.7206897 0.2855736 0.8594954  1672
[4542] {cap.surface=f,                                                                                            
        ring.number=o}              => {gill.attachment=f}          0.2678484  1.0000000 0.2678484 1.0265353  2176
[4543] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {ring.number=o}              0.2678484  0.9379310 0.2855736 1.0175950  2176
[4544] {cap.surface=f,                                                                                            
        ring.number=o}              => {veil.color=w}               0.2678484  1.0000000 0.2678484 1.0252398  2176
[4545] {cap.surface=f,                                                                                            
        veil.color=w}               => {ring.number=o}              0.2678484  0.9379310 0.2855736 1.0175950  2176
[4546] {cap.surface=f,                                                                                            
        gill.attachment=f}          => {veil.color=w}               0.2855736  1.0000000 0.2855736 1.0252398  2320
[4547] {cap.surface=f,                                                                                            
        veil.color=w}               => {gill.attachment=f}          0.2855736  1.0000000 0.2855736 1.0265353  2320
[4548] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {stalk.root=?}               0.1280158  0.9665428 0.1324471 3.1662070  1040
[4549] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {spore.print.color=w}        0.1280158  1.0000000 0.1280158 3.4020101  1040
[4550] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {gill.size=n}                0.1102905  0.8327138 0.1324471 2.6930599   896
[4551] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {spore.print.color=w}        0.1102905  1.0000000 0.1102905 3.4020101   896
[4552] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {ring.type=e}                0.1102905  0.8327138 0.1324471 2.4369476   896
[4553] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {spore.print.color=w}        0.1102905  1.0000000 0.1102905 3.4020101   896
[4554] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {class=p}                    0.1147218  0.8661710 0.1324471 1.7969288   932
[4555] {class=p,                                                                                                  
        spore.print.color=w}        => {stalk.surface.above.ring=k} 0.1147218  0.5143488 0.2230428 1.7616229   932
[4556] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {population=v}               0.1102905  0.8327138 0.1324471 1.6744967   896
[4557] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {spore.print.color=w}        0.1102905  0.5803109 0.1900542 1.9742234   896
[4558] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.8029740 0.1324471 1.4156599   864
[4559] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {spore.print.color=w}        0.1063516  1.0000000 0.1063516 3.4020101   864
[4560] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[4561] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {bruises=f}                  0.1324471  1.0000000 0.1324471 1.7110362  1076
[4562] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {gill.spacing=c}             0.1147218  0.8661710 0.1324471 1.0329967   932
[4563] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {ring.number=o}              0.1102905  0.8327138 0.1324471 0.9034410   896
[4564] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {gill.attachment=f}          0.1302314  0.9832714 0.1324471 1.0093627  1058
[4565] {stalk.surface.above.ring=k,                                                                               
        spore.print.color=w}        => {veil.color=w}               0.1324471  1.0000000 0.1324471 1.0252398  1076
[4566] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {gill.size=n}                0.1102905  0.8615385 0.1280158 2.7862812   896
[4567] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {stalk.root=?}               0.1102905  1.0000000 0.1102905 3.2758065   896
[4568] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {ring.type=e}                0.1102905  0.8615385 0.1280158 2.5213035   896
[4569] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {stalk.root=?}               0.1102905  1.0000000 0.1102905 3.2758065   896
[4570] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {class=p}                    0.1102905  0.8615385 0.1280158 1.7873183   896
[4571] {class=p,                                                                                                  
        stalk.root=?}               => {stalk.surface.above.ring=k} 0.1102905  0.5090909 0.2166420 1.7436149   896
[4572] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {population=v}               0.1102905  0.8615385 0.1280158 1.7324600   896
[4573] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {stalk.root=?}               0.1102905  0.5803109 0.1900542 1.9009861   896
[4574] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {stalk.shape=t}              0.1063516  0.8307692 0.1280158 1.4646635   864
[4575] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {stalk.root=?}               0.1063516  1.0000000 0.1063516 3.2758065   864
[4576] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.surface.above.ring=k} 0.1063516  0.5000000 0.2127031 1.7124789   864
[4577] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {bruises=f}                  0.1280158  1.0000000 0.1280158 1.7110362  1040
[4578] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1102905  0.8615385 0.1280158 1.0274719   896
[4579] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {ring.number=o}              0.1102905  0.8615385 0.1280158 0.9347140   896
[4580] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1280158  1.0000000 0.1280158 1.0265353  1040
[4581] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=k} => {veil.color=w}               0.1280158  1.0000000 0.1280158 1.0252398  1040
[4582] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {ring.type=e}                0.1102905  1.0000000 0.1102905 2.9265130   896
[4583] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {gill.size=n}                0.1102905  1.0000000 0.1102905 3.2340764   896
[4584] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {class=p}                    0.1102905  1.0000000 0.1102905 2.0745659   896
[4585] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {population=v}               0.1102905  1.0000000 0.1102905 2.0108911   896
[4586] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {gill.size=n}                0.1102905  0.5803109 0.1900542 1.8767697   896
[4587] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {stalk.shape=t}              0.1063516  0.9642857 0.1102905 1.7000558   864
[4588] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {gill.size=n}                0.1063516  1.0000000 0.1063516 3.2340764   864
[4589] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {bruises=f}                  0.1102905  1.0000000 0.1102905 1.7110362   896
[4590] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1102905  1.0000000 0.1102905 1.1926013   896
[4591] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {ring.number=o}              0.1102905  1.0000000 0.1102905 1.0849359   896
[4592] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1102905  1.0000000 0.1102905 1.0265353   896
[4593] {gill.size=n,                                                                                              
        stalk.surface.above.ring=k} => {veil.color=w}               0.1102905  1.0000000 0.1102905 1.0252398   896
[4594] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {class=p}                    0.1102905  1.0000000 0.1102905 2.0745659   896
[4595] {class=p,                                                                                                  
        ring.type=e}                => {stalk.surface.above.ring=k} 0.1102905  0.5067873 0.2176268 1.7357252   896
[4596] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {population=v}               0.1102905  1.0000000 0.1102905 2.0108911   896
[4597] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {ring.type=e}                0.1102905  0.5803109 0.1900542 1.6982873   896
[4598] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {stalk.shape=t}              0.1063516  0.9642857 0.1102905 1.7000558   864
[4599] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {ring.type=e}                0.1063516  1.0000000 0.1063516 2.9265130   864
[4600] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {bruises=f}                  0.1102905  1.0000000 0.1102905 1.7110362   896
[4601] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {gill.spacing=c}             0.1102905  1.0000000 0.1102905 1.1926013   896
[4602] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {ring.number=o}              0.1102905  1.0000000 0.1102905 1.0849359   896
[4603] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {gill.attachment=f}          0.1102905  1.0000000 0.1102905 1.0265353   896
[4604] {stalk.surface.above.ring=k,                                                                               
        ring.type=e}                => {veil.color=w}               0.1102905  1.0000000 0.1102905 1.0252398   896
[4605] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {class=p}                    0.1176760  1.0000000 0.1176760 2.0745659   956
[4606] {class=p,                                                                                                  
        cap.shape=f}                => {stalk.surface.above.ring=k} 0.1176760  0.6143959 0.1915313 2.1042800   956
[4607] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {bruises=f}                  0.1176760  1.0000000 0.1176760 1.7110362   956
[4608] {cap.shape=f,                                                                                              
        bruises=f}                  => {stalk.surface.above.ring=k} 0.1176760  0.5450399 0.2159035 1.8667387   956
[4609] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1176760  1.0000000 0.1176760 1.1926013   956
[4610] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {ring.number=o}              0.1161989  0.9874477 0.1176760 1.0713175   944
[4611] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1169375  0.9937238 0.1176760 1.0200926   950
[4612] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=k} => {veil.color=w}               0.1176760  1.0000000 0.1176760 1.0252398   956
[4613] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {class=p}                    0.1393402  1.0000000 0.1393402 2.0745659  1132
[4614] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {cap.surface=y}              0.1393402  0.5080790 0.2742491 1.2723902  1132
[4615] {class=p,                                                                                                  
        cap.surface=y}              => {stalk.surface.above.ring=k} 0.1393402  0.6505747 0.2141802 2.2281910  1132
[4616] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {bruises=f}                  0.1393402  1.0000000 0.1393402 1.7110362  1132
[4617] {cap.surface=y,                                                                                            
        bruises=f}                  => {stalk.surface.above.ring=k} 0.1393402  0.6852300 0.2033481 2.3468839  1132
[4618] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1393402  1.0000000 0.1393402 1.1926013  1132
[4619] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {cap.surface=y}              0.1393402  0.5080790 0.2742491 1.2723902  1132
[4620] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {ring.number=o}              0.1349089  0.9681979 0.1393402 1.0504326  1096
[4621] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {cap.surface=y}              0.1349089  0.5000000 0.2698178 1.2521578  1096
[4622] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1371246  0.9840989 0.1393402 1.0102123  1114
[4623] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=k} => {veil.color=w}               0.1393402  1.0000000 0.1393402 1.0252398  1132
[4624] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.8594164 0.1856228 1.8490199  1296
[4625] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1595273  1.0000000 0.1595273 2.3105802  1296
[4626] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {stalk.surface.above.ring=k} 0.1595273  0.7788462 0.2048252 2.6675152  1296
[4627] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {class=p}                    0.1678976  0.9045093 0.1856228 1.8764641  1364
[4628] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1678976  0.6122083 0.2742491 1.4145563  1364
[4629] {class=p,                                                                                                  
        stalk.shape=e}              => {stalk.surface.above.ring=k} 0.1678976  0.7178947 0.2338749 2.4587592  1364
[4630] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {bruises=f}                  0.1856228  1.0000000 0.1856228 1.7110362  1508
[4631] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1856228  0.6357504 0.2919744 1.4689523  1508
[4632] {bruises=f,                                                                                                
        stalk.shape=e}              => {stalk.surface.above.ring=k} 0.1856228  0.6696270 0.2772033 2.2934442  1508
[4633] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {gill.size=b}                0.1816839  0.9787798 0.1856228 1.4168937  1476
[4634] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1816839  1.0000000 0.1816839 2.3105802  1476
[4635] {gill.size=b,                                                                                              
        stalk.shape=e}              => {stalk.surface.above.ring=k} 0.1816839  0.5219236 0.3481044 1.7875664  1476
[4636] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1678976  0.9045093 0.1856228 1.0787189  1364
[4637] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1678976  0.6122083 0.2742491 1.4145563  1364
[4638] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {ring.number=o}              0.1634663  0.8806366 0.1856228 0.9554343  1328
[4639] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {stalk.shape=e}              0.1634663  0.6058394 0.2698178 1.3998406  1328
[4640] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1834072  0.9880637 0.1856228 1.0142822  1490
[4641] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {stalk.shape=e}              0.1834072  0.6329652 0.2897587 1.4625168  1490
[4642] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=k} => {veil.color=w}               0.1856228  1.0000000 0.1856228 1.0252398  1508
[4643] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {stalk.shape=e}              0.1856228  0.6357504 0.2919744 1.4689523  1508
[4644] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {class=p}                    0.1176760  0.9521912 0.1235844 1.9753835   956
[4645] {class=p,                                                                                                  
        cap.shape=x}                => {stalk.surface.above.ring=k} 0.1176760  0.5597190 0.2102413 1.9170139   956
[4646] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {bruises=f}                  0.1235844  1.0000000 0.1235844 1.7110362  1004
[4647] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1176760  0.9521912 0.1235844 1.1355845   956
[4648] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {ring.number=o}              0.1161989  0.9402390 0.1235844 1.0200991   944
[4649] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1228459  0.9940239 0.1235844 1.0204006   998
[4650] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=k} => {veil.color=w}               0.1235844  1.0000000 0.1235844 1.0252398  1004
[4651] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {class=p}                    0.1595273  1.0000000 0.1595273 2.0745659  1296
[4652] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.5816876 0.2742491 1.2514910  1296
[4653] {class=p,                                                                                                  
        stalk.root=b}               => {stalk.surface.above.ring=k} 0.1595273  0.6982759 0.2284589 2.3915654  1296
[4654] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {bruises=f}                  0.1595273  1.0000000 0.1595273 1.7110362  1296
[4655] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.5463744 0.2919744 1.1755152  1296
[4656] {bruises=f,                                                                                                
        stalk.root=b}               => {stalk.surface.above.ring=k} 0.1595273  0.8350515 0.1910389 2.8600163  1296
[4657] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.size=b}                0.1595273  1.0000000 0.1595273 1.4476123  1296
[4658] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.8780488 0.1816839 1.8891071  1296
[4659] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1595273  1.0000000 0.1595273 1.1926013  1296
[4660] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.5816876 0.2742491 1.2514910  1296
[4661] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {ring.number=o}              0.1595273  1.0000000 0.1595273 1.0849359  1296
[4662] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {stalk.root=b}               0.1595273  0.5912409 0.2698178 1.2720447  1296
[4663] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[4664] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {stalk.root=b}               0.1595273  0.5505523 0.2897587 1.1845038  1296
[4665] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=k} => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[4666] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {stalk.root=b}               0.1595273  0.5463744 0.2919744 1.1755152  1296
[4667] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {population=v}               0.1900542  0.6929982 0.2742491 1.3935439  1544
[4668] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {class=p}                    0.1900542  1.0000000 0.1900542 2.0745659  1544
[4669] {class=p,                                                                                                  
        population=v}               => {stalk.surface.above.ring=k} 0.1900542  0.5421348 0.3505662 1.8567889  1544
[4670] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {class=p}                    0.1063516  1.0000000 0.1063516 2.0745659   864
[4671] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {bruises=f}                  0.2742491  1.0000000 0.2742491 1.7110362  2228
[4672] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {class=p}                    0.2742491  0.9392917 0.2919744 1.9486226  2228
[4673] {class=p,                                                                                                  
        bruises=f}                  => {stalk.surface.above.ring=k} 0.2742491  0.6767922 0.4052191 2.3179848  2228
[4674] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {gill.size=b}                0.1639586  0.5978456 0.2742491 0.8654486  1332
[4675] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {class=p}                    0.1639586  0.9024390 0.1816839 1.8721692  1332
[4676] {class=p,                                                                                                  
        gill.size=b}                => {stalk.surface.above.ring=k} 0.1639586  0.7872340 0.2082718 2.6962434  1332
[4677] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.2742491  1.0000000 0.2742491 1.1926013  2228
[4678] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {class=p}                    0.2742491  1.0000000 0.2742491 2.0745659  2228
[4679] {class=p,                                                                                                  
        gill.spacing=c}             => {stalk.surface.above.ring=k} 0.2742491  0.5856993 0.4682422 2.0059953  2228
[4680] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {ring.number=o}              0.2698178  0.9838420 0.2742491 1.0674055  2192
[4681] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {class=p}                    0.2698178  1.0000000 0.2698178 2.0745659  2192
[4682] {class=p,                                                                                                  
        ring.number=o}              => {stalk.surface.above.ring=k} 0.2698178  0.5756303 0.4687346 1.9715093  2192
[4683] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.2720335  0.9919210 0.2742491 1.0182419  2210
[4684] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {class=p}                    0.2720335  0.9388275 0.2897587 1.9476596  2210
[4685] {class=p,                                                                                                  
        gill.attachment=f}          => {stalk.surface.above.ring=k} 0.2720335  0.5669574 0.4798129 1.9418052  2210
[4686] {class=p,                                                                                                  
        stalk.surface.above.ring=k} => {veil.color=w}               0.2742491  1.0000000 0.2742491 1.0252398  2228
[4687] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {class=p}                    0.2742491  0.9392917 0.2919744 1.9486226  2228
[4688] {class=p,                                                                                                  
        veil.color=w}               => {stalk.surface.above.ring=k} 0.2742491  0.5701126 0.4810438 1.9526116  2228
[4689] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {stalk.shape=t}              0.1063516  0.5595855 0.1900542 0.9865609   864
[4690] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {population=v}               0.1063516  1.0000000 0.1063516 2.0108911   864
[4691] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {bruises=f}                  0.1900542  1.0000000 0.1900542 1.7110362  1544
[4692] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {population=v}               0.1900542  0.6509275 0.2919744 1.3089443  1544
[4693] {bruises=f,                                                                                                
        population=v}               => {stalk.surface.above.ring=k} 0.1900542  0.5676471 0.3348104 1.9441672  1544
[4694] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {gill.spacing=c}             0.1900542  1.0000000 0.1900542 1.1926013  1544
[4695] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {population=v}               0.1900542  0.6929982 0.2742491 1.3935439  1544
[4696] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {ring.number=o}              0.1900542  1.0000000 0.1900542 1.0849359  1544
[4697] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {population=v}               0.1900542  0.7043796 0.2698178 1.4164306  1544
[4698] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {gill.attachment=f}          0.1900542  1.0000000 0.1900542 1.0265353  1544
[4699] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {population=v}               0.1900542  0.6559048 0.2897587 1.3189532  1544
[4700] {stalk.surface.above.ring=k,                                                                               
        population=v}               => {veil.color=w}               0.1900542  1.0000000 0.1900542 1.0252398  1544
[4701] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {population=v}               0.1900542  0.6509275 0.2919744 1.3089443  1544
[4702] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {bruises=f}                  0.1063516  1.0000000 0.1063516 1.7110362   864
[4703] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1063516  1.0000000 0.1063516 1.1926013   864
[4704] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {ring.number=o}              0.1063516  1.0000000 0.1063516 1.0849359   864
[4705] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1063516  1.0000000 0.1063516 1.0265353   864
[4706] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=k} => {veil.color=w}               0.1063516  1.0000000 0.1063516 1.0252398   864
[4707] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {gill.size=b}                0.1816839  0.6222597 0.2919744 0.9007908  1476
[4708] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {bruises=f}                  0.1816839  1.0000000 0.1816839 1.7110362  1476
[4709] {bruises=f,                                                                                                
        gill.size=b}                => {stalk.surface.above.ring=k} 0.1816839  0.5685670 0.3195470 1.9473181  1476
[4710] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.2742491  0.9392917 0.2919744 1.1202005  2228
[4711] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {bruises=f}                  0.2742491  1.0000000 0.2742491 1.7110362  2228
[4712] {bruises=f,                                                                                                
        gill.spacing=c}             => {stalk.surface.above.ring=k} 0.2742491  0.6293785 0.4357459 2.1555949  2228
[4713] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {ring.number=o}              0.2698178  0.9241147 0.2919744 1.0026052  2192
[4714] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {bruises=f}                  0.2698178  1.0000000 0.2698178 1.7110362  2192
[4715] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.2897587  0.9924115 0.2919744 1.0187454  2354
[4716] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {bruises=f}                  0.2897587  1.0000000 0.2897587 1.7110362  2354
[4717] {bruises=f,                                                                                                
        gill.attachment=f}          => {stalk.surface.above.ring=k} 0.2897587  0.5187307 0.5585918 1.7766308  2354
[4718] {bruises=f,                                                                                                
        stalk.surface.above.ring=k} => {veil.color=w}               0.2919744  1.0000000 0.2919744 1.0252398  2372
[4719] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {bruises=f}                  0.2919744  1.0000000 0.2919744 1.7110362  2372
[4720] {bruises=f,                                                                                                
        veil.color=w}               => {stalk.surface.above.ring=k} 0.2919744  0.5215479 0.5598227 1.7862797  2372
[4721] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.1639586  0.9024390 0.1816839 1.0762499  1332
[4722] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {gill.size=b}                0.1639586  0.5978456 0.2742491 0.8654486  1332
[4723] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {ring.number=o}              0.1595273  0.8780488 0.1816839 0.9526266  1296
[4724] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {gill.size=b}                0.1595273  0.5912409 0.2698178 0.8558875  1296
[4725] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.1794682  0.9878049 0.1816839 1.0140165  1458
[4726] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {gill.size=b}                0.1794682  0.6193713 0.2897587 0.8966095  1458
[4727] {gill.size=b,                                                                                              
        stalk.surface.above.ring=k} => {veil.color=w}               0.1816839  1.0000000 0.1816839 1.0252398  1476
[4728] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {gill.size=b}                0.1816839  0.6222597 0.2919744 0.9007908  1476
[4729] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {ring.number=o}              0.2698178  0.9838420 0.2742491 1.0674055  2192
[4730] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {gill.spacing=c}             0.2698178  1.0000000 0.2698178 1.1926013  2192
[4731] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {gill.attachment=f}          0.2720335  0.9919210 0.2742491 1.0182419  2210
[4732] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {gill.spacing=c}             0.2720335  0.9388275 0.2897587 1.1196469  2210
[4733] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=k} => {veil.color=w}               0.2742491  1.0000000 0.2742491 1.0252398  2228
[4734] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {gill.spacing=c}             0.2742491  0.9392917 0.2919744 1.1202005  2228
[4735] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {gill.attachment=f}          0.2698178  1.0000000 0.2698178 1.0265353  2192
[4736] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {ring.number=o}              0.2698178  0.9311810 0.2897587 1.0102717  2192
[4737] {stalk.surface.above.ring=k,                                                                               
        ring.number=o}              => {veil.color=w}               0.2698178  1.0000000 0.2698178 1.0252398  2192
[4738] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {ring.number=o}              0.2698178  0.9241147 0.2919744 1.0026052  2192
[4739] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=k} => {veil.color=w}               0.2897587  1.0000000 0.2897587 1.0252398  2354
[4740] {stalk.surface.above.ring=k,                                                                               
        veil.color=w}               => {gill.attachment=f}          0.2897587  0.9924115 0.2919744 1.0187454  2354
[4741] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {gill.size=n}                0.2166420  0.7857143 0.2757262 2.5410601  1760
[4742] {gill.size=n,                                                                                              
        spore.print.color=w}        => {stalk.root=?}               0.2166420  0.9649123 0.2245199 3.1608659  1760
[4743] {gill.size=n,                                                                                              
        stalk.root=?}               => {spore.print.color=w}        0.2166420  0.9734513 0.2225505 3.3116912  1760
[4744] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {stalk.root=?}               0.1358936  0.9787234 0.1388479 3.2061084  1104
[4745] {cap.surface=s,                                                                                            
        stalk.root=?}               => {spore.print.color=w}        0.1358936  0.8518519 0.1595273 2.8980086  1104
[4746] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {ring.type=e}                0.2402757  0.8714286 0.2757262 2.5502470  1952
[4747] {ring.type=e,                                                                                              
        spore.print.color=w}        => {stalk.root=?}               0.2402757  0.9721116 0.2471689 3.1844493  1952
[4748] {stalk.root=?,                                                                                             
        ring.type=e}                => {spore.print.color=w}        0.2402757  1.0000000 0.2402757 3.4020101  1952
[4749] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {stalk.root=?}               0.1201379  0.9104478 0.1319547 2.9824506   976
[4750] {cap.surface=y,                                                                                            
        stalk.root=?}               => {spore.print.color=w}        0.1201379  0.9531250 0.1260463 3.2425408   976
[4751] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {class=p}                    0.2166420  0.7857143 0.2757262 1.6300161  1760
[4752] {class=p,                                                                                                  
        spore.print.color=w}        => {stalk.root=?}               0.2166420  0.9713024 0.2230428 3.1817988  1760
[4753] {class=p,                                                                                                  
        stalk.root=?}               => {spore.print.color=w}        0.2166420  1.0000000 0.2166420 3.4020101  1760
[4754] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {population=v}               0.2166420  0.7857143 0.2757262 1.5799859  1760
[4755] {spore.print.color=w,                                                                                      
        population=v}               => {stalk.root=?}               0.2166420  0.9649123 0.2245199 3.1608659  1760
[4756] {stalk.root=?,                                                                                             
        population=v}               => {spore.print.color=w}        0.2166420  0.9361702 0.2314131 3.1848605  1760
[4757] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1536189  0.5571429 0.2757262 1.0324426  1248
[4758] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {stalk.root=?}               0.1536189  0.9689441 0.1585426 3.1740733  1248
[4759] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {spore.print.color=w}        0.1536189  0.9629630 0.1595273 3.2760097  1248
[4760] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1575579  0.5714286 0.2757262 1.0399386  1280
[4761] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {stalk.root=?}               0.1575579  0.9356725 0.1683900 3.0650821  1280
[4762] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {spore.print.color=w}        0.1575579  0.9638554 0.1634663 3.2790458  1280
[4763] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.7714286 0.2757262 1.3600446  1728
[4764] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.root=?}               0.2127031  1.0000000 0.2127031 3.2758065  1728
[4765] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {spore.print.color=w}        0.2127031  1.0000000 0.2127031 3.4020101  1728
[4766] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {bruises=f}                  0.2520926  0.9142857 0.2757262 1.5643760  2048
[4767] {bruises=f,                                                                                                
        spore.print.color=w}        => {stalk.root=?}               0.2520926  0.9499072 0.2653865 3.1117123  2048
[4768] {bruises=f,                                                                                                
        stalk.root=?}               => {spore.print.color=w}        0.2520926  0.8951049 0.2816347 3.0451558  2048
[4769] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1477105  0.5357143 0.2757262 0.8817145  1200
[4770] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {stalk.root=?}               0.1477105  0.9493671 0.1555884 3.1099428  1200
[4771] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {spore.print.color=w}        0.1477105  0.8620690 0.1713442 2.9327673  1200
[4772] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1477105  0.5357143 0.2757262 0.8408313  1200
[4773] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {stalk.root=?}               0.1477105  0.9493671 0.1555884 3.1099428  1200
[4774] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {spore.print.color=w}        0.1477105  0.8333333 0.1772526 2.8350084  1200
[4775] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {gill.spacing=c}             0.2402757  0.8714286 0.2757262 1.0392668  1952
[4776] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {stalk.root=?}               0.2402757  0.9587426 0.2506155 3.1406553  1952
[4777] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {spore.print.color=w}        0.2402757  0.8905109 0.2698178 3.0295272  1952
[4778] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {ring.number=o}              0.2166420  0.7857143 0.2757262 0.8524496  1760
[4779] {ring.number=o,                                                                                            
        spore.print.color=w}        => {stalk.root=?}               0.2166420  0.9649123 0.2245199 3.1608659  1760
[4780] {stalk.root=?,                                                                                             
        ring.number=o}              => {spore.print.color=w}        0.2166420  0.8800000 0.2461841 2.9937688  1760
[4781] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {gill.attachment=f}          0.2757262  1.0000000 0.2757262 1.0265353  2240
[4782] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.root=?}               0.2757262  0.9451477 0.2917282 3.0961209  2240
[4783] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {spore.print.color=w}        0.2757262  0.9790210 0.2816347 3.3306392  2240
[4784] {stalk.root=?,                                                                                             
        spore.print.color=w}        => {veil.color=w}               0.2757262  1.0000000 0.2757262 1.0252398  2240
[4785] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.root=?}               0.2757262  0.9411765 0.2929591 3.0831120  2240
[4786] {stalk.root=?,                                                                                             
        veil.color=w}               => {spore.print.color=w}        0.2757262  0.9790210 0.2816347 3.3306392  2240
[4787] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {gill.size=n}                0.1063516  0.7659574 0.1388479 2.4771649   864
[4788] {cap.surface=s,                                                                                            
        gill.size=n}                => {spore.print.color=w}        0.1063516  0.7605634 0.1398326 2.5874443   864
[4789] {gill.size=n,                                                                                              
        spore.print.color=w}        => {ring.type=e}                0.2235352  0.9956140 0.2245199 2.9136774  1816
[4790] {ring.type=e,                                                                                              
        spore.print.color=w}        => {gill.size=n}                0.2235352  0.9043825 0.2471689 2.9248420  1816
[4791] {gill.size=n,                                                                                              
        ring.type=e}                => {spore.print.color=w}        0.2235352  1.0000000 0.2235352 3.4020101  1816
[4792] {gill.size=n,                                                                                              
        spore.print.color=w}        => {cap.surface=y}              0.1127523  0.5021930 0.2245199 1.2576498   916
[4793] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {gill.size=n}                0.1127523  0.8544776 0.1319547 2.7634459   916
[4794] {cap.surface=y,                                                                                            
        gill.size=n}                => {spore.print.color=w}        0.1127523  0.8388278 0.1344165 2.8537007   916
[4795] {gill.size=n,                                                                                              
        spore.print.color=w}        => {class=p}                    0.2186115  0.9736842 0.2245199 2.0199720  1776
[4796] {class=p,                                                                                                  
        spore.print.color=w}        => {gill.size=n}                0.2186115  0.9801325 0.2230428 3.1698233  1776
[4797] {class=p,                                                                                                  
        gill.size=n}                => {spore.print.color=w}        0.2186115  0.7985612 0.2737568 2.7167131  1776
[4798] {gill.size=n,                                                                                              
        spore.print.color=w}        => {population=v}               0.2225505  0.9912281 0.2245199 1.9932517  1808
[4799] {spore.print.color=w,                                                                                      
        population=v}               => {gill.size=n}                0.2225505  0.9912281 0.2245199 3.2057073  1808
[4800] {gill.size=n,                                                                                              
        population=v}               => {spore.print.color=w}        0.2225505  0.8218182 0.2708026 2.7958337  1808
[4801] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {gill.size=n}                0.1073363  0.6770186 0.1585426 2.1895300   872
[4802] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {spore.print.color=w}        0.1073363  0.5589744 0.1920236 1.9016364   872
[4803] {gill.size=n,                                                                                              
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1171837  0.5219298 0.2245199 0.9498562   952
[4804] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {gill.size=n}                0.1171837  0.6959064 0.1683900 2.2506146   952
[4805] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {spore.print.color=w}        0.1171837  0.5804878 0.2018710 1.9748253   952
[4806] {gill.size=n,                                                                                              
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.9473684 0.2245199 1.6702303  1728
[4807] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[4808] {gill.size=n,                                                                                              
        stalk.shape=t}              => {spore.print.color=w}        0.2127031  0.9473684 0.2245199 3.2229569  1728
[4809] {gill.size=n,                                                                                              
        spore.print.color=w}        => {bruises=f}                  0.2235352  0.9956140 0.2245199 1.7035317  1816
[4810] {bruises=f,                                                                                                
        spore.print.color=w}        => {gill.size=n}                0.2235352  0.8423006 0.2653865 2.7240644  1816
[4811] {bruises=f,                                                                                                
        gill.size=n}                => {spore.print.color=w}        0.2235352  0.8438662 0.2648941 2.8708412  1816
[4812] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {gill.size=n}                0.1102905  0.7088608 0.1555884 2.2925099   896
[4813] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {spore.print.color=w}        0.1102905  0.5833333 0.1890694 1.9845059   896
[4814] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {gill.size=n}                0.1102905  0.7088608 0.1555884 2.2925099   896
[4815] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {spore.print.color=w}        0.1102905  0.5656566 0.1949778 1.9243693   896
[4816] {gill.size=n,                                                                                              
        spore.print.color=w}        => {gill.spacing=c}             0.2166420  0.9649123 0.2245199 1.1507556  1760
[4817] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {gill.size=n}                0.2166420  0.8644401 0.2506155 2.7956653  1760
[4818] {gill.spacing=c,                                                                                           
        gill.size=n}                => {spore.print.color=w}        0.2166420  0.7801418 0.2776957 2.6540504  1760
[4819] {gill.size=n,                                                                                              
        spore.print.color=w}        => {ring.number=o}              0.2245199  1.0000000 0.2245199 1.0849359  1824
[4820] {ring.number=o,                                                                                            
        spore.print.color=w}        => {gill.size=n}                0.2245199  1.0000000 0.2245199 3.2340764  1824
[4821] {gill.size=n,                                                                                              
        ring.number=o}              => {spore.print.color=w}        0.2245199  0.7261146 0.3092073 2.4702493  1824
[4822] {gill.size=n,                                                                                              
        spore.print.color=w}        => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[4823] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {gill.size=n}                0.2245199  0.7696203 0.2917282 2.4890107  1824
[4824] {gill.attachment=f,                                                                                        
        gill.size=n}                => {spore.print.color=w}        0.2245199  0.7261146 0.3092073 2.4702493  1824
[4825] {gill.size=n,                                                                                              
        spore.print.color=w}        => {veil.color=w}               0.2235352  0.9956140 0.2245199 1.0207431  1816
[4826] {veil.color=w,                                                                                             
        spore.print.color=w}        => {gill.size=n}                0.2235352  0.7630252 0.2929591 2.4676818  1816
[4827] {gill.size=n,                                                                                              
        veil.color=w}               => {spore.print.color=w}        0.2235352  0.7252396 0.3082226 2.4672725  1816
[4828] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {ring.type=e}                0.1181684  0.8510638 0.1388479 2.4906493   960
[4829] {cap.surface=s,                                                                                            
        ring.type=e}                => {spore.print.color=w}        0.1181684  0.7142857 0.1654357 2.4300072   960
[4830] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {class=p}                    0.1063516  0.7659574 0.1388479 1.5890292   864
[4831] {class=p,                                                                                                  
        cap.surface=s}              => {spore.print.color=w}        0.1063516  0.6118980 0.1738060 2.0816832   864
[4832] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {population=v}               0.1073363  0.7730496 0.1388479 1.5545186   872
[4833] {cap.surface=s,                                                                                            
        population=v}               => {spore.print.color=w}        0.1073363  0.6666667 0.1610044 2.2680067   872
[4834] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.7659574 0.1388479 1.3503989   864
[4835] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[4836] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {spore.print.color=w}        0.1063516  0.5454545 0.1949778 1.8556418   864
[4837] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {bruises=f}                  0.1250615  0.9007092 0.1388479 1.5411461  1016
[4838] {cap.surface=s,                                                                                            
        bruises=f}                  => {spore.print.color=w}        0.1250615  0.6018957 0.2077794 2.0476553  1016
[4839] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {gill.spacing=c}             0.1211226  0.8723404 0.1388479 1.0403543   984
[4840] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {spore.print.color=w}        0.1211226  0.5093168 0.2378139 1.7327008   984
[4841] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {ring.number=o}              0.1063516  0.7659574 0.1388479 0.8310147   864
[4842] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {gill.attachment=f}          0.1388479  1.0000000 0.1388479 1.0265353  1128
[4843] {cap.surface=s,                                                                                            
        spore.print.color=w}        => {veil.color=w}               0.1388479  1.0000000 0.1388479 1.0252398  1128
[4844] {ring.type=e,                                                                                              
        spore.print.color=w}        => {cap.surface=y}              0.1240768  0.5019920 0.2471689 1.2571465  1008
[4845] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {ring.type=e}                0.1240768  0.9402985 0.1319547 2.7517958  1008
[4846] {cap.surface=y,                                                                                            
        ring.type=e}                => {spore.print.color=w}        0.1240768  1.0000000 0.1240768 3.4020101  1008
[4847] {ring.type=e,                                                                                              
        spore.print.color=w}        => {class=p}                    0.2176268  0.8804781 0.2471689 1.8266098  1768
[4848] {class=p,                                                                                                  
        spore.print.color=w}        => {ring.type=e}                0.2176268  0.9757174 0.2230428 2.8554497  1768
[4849] {class=p,                                                                                                  
        ring.type=e}                => {spore.print.color=w}        0.2176268  1.0000000 0.2176268 3.4020101  1768
[4850] {ring.type=e,                                                                                              
        spore.print.color=w}        => {population=v}               0.2225505  0.9003984 0.2471689 1.8106031  1808
[4851] {spore.print.color=w,                                                                                      
        population=v}               => {ring.type=e}                0.2225505  0.9912281 0.2245199 2.9008418  1808
[4852] {ring.type=e,                                                                                              
        population=v}               => {spore.print.color=w}        0.2225505  1.0000000 0.2225505 3.4020101  1808
[4853] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {ring.type=e}                0.1181684  0.7453416 0.1585426 2.1812519   960
[4854] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {spore.print.color=w}        0.1181684  0.5555556 0.2127031 1.8900056   960
[4855] {ring.type=e,                                                                                              
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1280158  0.5179283 0.2471689 0.9425738  1040
[4856] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {ring.type=e}                0.1280158  0.7602339 0.1683900 2.2248344  1040
[4857] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {spore.print.color=w}        0.1280158  0.5752212 0.2225505 1.9569084  1040
[4858] {ring.type=e,                                                                                              
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.8605578 0.2471689 1.5171813  1728
[4859] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[4860] {stalk.shape=t,                                                                                            
        ring.type=e}                => {spore.print.color=w}        0.2127031  0.6923077 0.3072378 2.3552377  1728
[4861] {ring.type=e,                                                                                              
        spore.print.color=w}        => {bruises=f}                  0.2235352  0.9043825 0.2471689 1.5474312  1816
[4862] {bruises=f,                                                                                                
        spore.print.color=w}        => {ring.type=e}                0.2235352  0.8423006 0.2653865 2.4650035  1816
[4863] {bruises=f,                                                                                                
        ring.type=e}                => {spore.print.color=w}        0.2235352  0.7027864 0.3180699 2.3908863  1816
[4864] {ring.type=e,                                                                                              
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1329394  0.5378486 0.2471689 0.8852273  1080
[4865] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {ring.type=e}                0.1329394  0.8544304 0.1555884 2.5005016  1080
[4866] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {spore.print.color=w}        0.1329394  0.7377049 0.1802068 2.5096795  1080
[4867] {ring.type=e,                                                                                              
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1329394  0.5378486 0.2471689 0.8441812  1080
[4868] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {ring.type=e}                0.1329394  0.8544304 0.1555884 2.5005016  1080
[4869] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {spore.print.color=w}        0.1329394  0.7377049 0.1802068 2.5096795  1080
[4870] {ring.type=e,                                                                                              
        spore.print.color=w}        => {gill.spacing=c}             0.2402757  0.9721116 0.2471689 1.1593415  1952
[4871] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {ring.type=e}                0.2402757  0.9587426 0.2506155 2.8057727  1952
[4872] {gill.spacing=c,                                                                                           
        ring.type=e}                => {spore.print.color=w}        0.2402757  1.0000000 0.2402757 3.4020101  1952
[4873] {ring.type=e,                                                                                              
        spore.print.color=w}        => {ring.number=o}              0.2235352  0.9043825 0.2471689 0.9811970  1816
[4874] {ring.number=o,                                                                                            
        spore.print.color=w}        => {ring.type=e}                0.2235352  0.9956140 0.2245199 2.9136774  1816
[4875] {ring.number=o,                                                                                            
        ring.type=e}                => {spore.print.color=w}        0.2235352  0.7027864 0.3180699 2.3908863  1816
[4876] {ring.type=e,                                                                                              
        spore.print.color=w}        => {gill.attachment=f}          0.2471689  1.0000000 0.2471689 1.0265353  2008
[4877] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {ring.type=e}                0.2471689  0.8472574 0.2917282 2.4795097  2008
[4878] {gill.attachment=f,                                                                                        
        ring.type=e}                => {spore.print.color=w}        0.2471689  0.7233429 0.3417036 2.4608199  2008
[4879] {ring.type=e,                                                                                              
        spore.print.color=w}        => {veil.color=w}               0.2461841  0.9960159 0.2471689 1.0211552  2000
[4880] {veil.color=w,                                                                                             
        spore.print.color=w}        => {ring.type=e}                0.2461841  0.8403361 0.2929591 2.4592546  2000
[4881] {veil.color=w,                                                                                             
        ring.type=e}                => {spore.print.color=w}        0.2461841  0.7225434 0.3407189 2.4580997  2000
[4882] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {class=p}                    0.1142294  0.8656716 0.1319547 1.7958929   928
[4883] {class=p,                                                                                                  
        spore.print.color=w}        => {cap.surface=y}              0.1142294  0.5121413 0.2230428 1.2825634   928
[4884] {class=p,                                                                                                  
        cap.surface=y}              => {spore.print.color=w}        0.1142294  0.5333333 0.2141802 1.8144054   928
[4885] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {population=v}               0.1122600  0.8507463 0.1319547 1.7107581   912
[4886] {spore.print.color=w,                                                                                      
        population=v}               => {cap.surface=y}              0.1122600  0.5000000 0.2245199 1.2521578   912
[4887] {cap.surface=y,                                                                                            
        population=v}               => {spore.print.color=w}        0.1122600  0.5089286 0.2205810 1.7313801   912
[4888] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.8059701 0.1319547 1.4209422   864
[4889] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[4890] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {spore.print.color=w}        0.1063516  0.5000000 0.2127031 1.7010050   864
[4891] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {bruises=f}                  0.1176760  0.8917910 0.1319547 1.5258868   956
[4892] {cap.surface=y,                                                                                            
        bruises=f}                  => {spore.print.color=w}        0.1176760  0.5786925 0.2033481 1.9687177   956
[4893] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {gill.spacing=c}             0.1275234  0.9664179 0.1319547 1.1525512  1036
[4894] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {cap.surface=y}              0.1275234  0.5088409 0.2506155 1.2742981  1036
[4895] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {ring.number=o}              0.1127523  0.8544776 0.1319547 0.9270534   916
[4896] {ring.number=o,                                                                                            
        spore.print.color=w}        => {cap.surface=y}              0.1127523  0.5021930 0.2245199 1.2576498   916
[4897] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {gill.attachment=f}          0.1297390  0.9832090 0.1319547 1.0092987  1054
[4898] {cap.surface=y,                                                                                            
        spore.print.color=w}        => {veil.color=w}               0.1309700  0.9925373 0.1319547 1.0175887  1064
[4899] {class=p,                                                                                                  
        spore.print.color=w}        => {population=v}               0.2166420  0.9713024 0.2230428 1.9531834  1760
[4900] {spore.print.color=w,                                                                                      
        population=v}               => {class=p}                    0.2166420  0.9649123 0.2245199 2.0017741  1760
[4901] {class=p,                                                                                                  
        population=v}               => {spore.print.color=w}        0.2166420  0.6179775 0.3505662 2.1023658  1760
[4902] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {class=p}                    0.1073363  0.6770186 0.1585426 1.4045198   872
[4903] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {spore.print.color=w}        0.1073363  0.5190476 0.2067947 1.7658052   872
[4904] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {class=p}                    0.1112752  0.6608187 0.1683900 1.3709120   904
[4905] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {spore.print.color=w}        0.1112752  0.5280374 0.2107336 1.7963885   904
[4906] {class=p,                                                                                                  
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.9536424 0.2230428 1.6812914  1728
[4907] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[4908] {class=p,                                                                                                  
        stalk.shape=t}              => {spore.print.color=w}        0.2127031  0.8571429 0.2481536 2.9160086  1728
[4909] {class=p,                                                                                                  
        spore.print.color=w}        => {bruises=f}                  0.2220581  0.9955850 0.2230428 1.7034820  1804
[4910] {bruises=f,                                                                                                
        spore.print.color=w}        => {class=p}                    0.2220581  0.8367347 0.2653865 1.7358612  1804
[4911] {class=p,                                                                                                  
        bruises=f}                  => {spore.print.color=w}        0.2220581  0.5479951 0.4052191 1.8642850  1804
[4912] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {class=p}                    0.1073363  0.6898734 0.1555884 1.4311879   872
[4913] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {spore.print.color=w}        0.1073363  0.5677083 0.1890694 1.9313495   872
[4914] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {class=p}                    0.1073363  0.6898734 0.1555884 1.4311879   872
[4915] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {spore.print.color=w}        0.1073363  0.5677083 0.1890694 1.9313495   872
[4916] {class=p,                                                                                                  
        spore.print.color=w}        => {gill.spacing=c}             0.2210734  0.9911700 0.2230428 1.1820706  1796
[4917] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {class=p}                    0.2210734  0.8821218 0.2506155 1.8300198  1796
[4918] {class=p,                                                                                                  
        spore.print.color=w}        => {ring.number=o}              0.2186115  0.9801325 0.2230428 1.0633809  1776
[4919] {ring.number=o,                                                                                            
        spore.print.color=w}        => {class=p}                    0.2186115  0.9736842 0.2245199 2.0199720  1776
[4920] {class=p,                                                                                                  
        spore.print.color=w}        => {gill.attachment=f}          0.2208272  0.9900662 0.2230428 1.0163379  1794
[4921] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {class=p}                    0.2208272  0.7569620 0.2917282 1.5703676  1794
[4922] {class=p,                                                                                                  
        spore.print.color=w}        => {veil.color=w}               0.2220581  0.9955850 0.2230428 1.0207133  1804
[4923] {veil.color=w,                                                                                             
        spore.print.color=w}        => {class=p}                    0.2220581  0.7579832 0.2929591 1.5724861  1804
[4924] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {population=v}               0.1083210  0.6832298 0.1585426 1.3739007   880
[4925] {spore.print.color=w,                                                                                      
        population=v}               => {stalk.color.above.ring=w}   0.1181684  0.5263158 0.2245199 0.9578381   960
[4926] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {population=v}               0.1181684  0.7017544 0.1683900 1.4111516   960
[4927] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {spore.print.color=w}        0.1181684  0.5172414 0.2284589 1.7596604   960
[4928] {spore.print.color=w,                                                                                      
        population=v}               => {stalk.shape=t}              0.2127031  0.9473684 0.2245199 1.6702303  1728
[4929] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[4930] {stalk.shape=t,                                                                                            
        population=v}               => {spore.print.color=w}        0.2127031  0.6101695 0.3485968 2.0758027  1728
[4931] {spore.print.color=w,                                                                                      
        population=v}               => {bruises=f}                  0.2225505  0.9912281 0.2245199 1.6960271  1808
[4932] {bruises=f,                                                                                                
        spore.print.color=w}        => {population=v}               0.2225505  0.8385900 0.2653865 1.6863131  1808
[4933] {bruises=f,                                                                                                
        population=v}               => {spore.print.color=w}        0.2225505  0.6647059 0.3348104 2.2613361  1808
[4934] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {population=v}               0.1112752  0.7151899 0.1555884 1.4381689   904
[4935] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {population=v}               0.1112752  0.7151899 0.1555884 1.4381689   904
[4936] {spore.print.color=w,                                                                                      
        population=v}               => {gill.spacing=c}             0.2186115  0.9736842 0.2245199 1.1612170  1776
[4937] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {population=v}               0.2186115  0.8722986 0.2506155 1.7540975  1776
[4938] {spore.print.color=w,                                                                                      
        population=v}               => {ring.number=o}              0.2225505  0.9912281 0.2245199 1.0754189  1808
[4939] {ring.number=o,                                                                                            
        spore.print.color=w}        => {population=v}               0.2225505  0.9912281 0.2245199 1.9932517  1808
[4940] {spore.print.color=w,                                                                                      
        population=v}               => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[4941] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {population=v}               0.2245199  0.7696203 0.2917282 1.5476225  1824
[4942] {spore.print.color=w,                                                                                      
        population=v}               => {veil.color=w}               0.2245199  1.0000000 0.2245199 1.0252398  1824
[4943] {veil.color=w,                                                                                             
        spore.print.color=w}        => {population=v}               0.2245199  0.7663866 0.2929591 1.5411199  1824
[4944] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.6708075 0.1585426 1.1826475   864
[4945] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[4946] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {bruises=f}                  0.1418021  0.8944099 0.1585426 1.5303678  1152
[4947] {bruises=f,                                                                                                
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1418021  0.5343228 0.2653865 0.9901548  1152
[4948] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {spore.print.color=w}        0.1418021  0.5106383 0.2776957 1.7371966  1152
[4949] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {gill.spacing=c}             0.1221073  0.7701863 0.1585426 0.9185252   992
[4950] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {ring.number=o}              0.1073363  0.6770186 0.1585426 0.7345218   872
[4951] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {gill.attachment=f}          0.1585426  1.0000000 0.1585426 1.0265353  1288
[4952] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1585426  0.5434599 0.2917282 1.0070868  1288
[4953] {stalk.color.below.ring=w,                                                                                 
        spore.print.color=w}        => {veil.color=w}               0.1585426  1.0000000 0.1585426 1.0252398  1288
[4954] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.color.below.ring=w}   0.1585426  0.5411765 0.2929591 1.0028553  1288
[4955] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.6315789 0.1683900 1.1134868   864
[4956] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[4957] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {bruises=f}                  0.1516494  0.9005848 0.1683900 1.5409332  1232
[4958] {bruises=f,                                                                                                
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1516494  0.5714286 0.2653865 1.0399386  1232
[4959] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {spore.print.color=w}        0.1516494  0.5273973 0.2875431 1.7942108  1232
[4960] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {gill.spacing=c}             0.1260463  0.7485380 0.1683900 0.8927074  1024
[4961] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1260463  0.5029470 0.2506155 0.9153094  1024
[4962] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {ring.number=o}              0.1171837  0.6959064 0.1683900 0.7550139   952
[4963] {ring.number=o,                                                                                            
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1171837  0.5219298 0.2245199 0.9498562   952
[4964] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {gill.attachment=f}          0.1683900  1.0000000 0.1683900 1.0265353  1368
[4965] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1683900  0.5772152 0.2917282 1.0504696  1368
[4966] {stalk.color.above.ring=w,                                                                                 
        spore.print.color=w}        => {veil.color=w}               0.1683900  1.0000000 0.1683900 1.0252398  1368
[4967] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.color.above.ring=w}   0.1683900  0.5747899 0.2929591 1.0460558  1368
[4968] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[4969] {bruises=f,                                                                                                
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.8014842 0.2653865 1.4130334  1728
[4970] {bruises=f,                                                                                                
        stalk.shape=t}              => {spore.print.color=w}        0.2127031  0.6923077 0.3072378 2.3552377  1728
[4971] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[4972] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.6835443 0.1555884 1.2051028   864
[4973] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[4974] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {stalk.shape=t}              0.1063516  0.6835443 0.1555884 1.2051028   864
[4975] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[4976] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.8487230 0.2506155 1.4963163  1728
[4977] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[4978] {ring.number=o,                                                                                            
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.9473684 0.2245199 1.6702303  1728
[4979] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[4980] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.7291139 0.2917282 1.2854430  1728
[4981] {stalk.shape=t,                                                                                            
        spore.print.color=w}        => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[4982] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.shape=t}              0.2127031  0.7260504 0.2929591 1.2800420  1728
[4983] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {bruises=f}                  0.1270310  0.8164557 0.1555884 1.3969853  1032
[4984] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {spore.print.color=w}        0.1270310  0.5443038 0.2333826 1.8517270  1032
[4985] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {bruises=f}                  0.1270310  0.8164557 0.1555884 1.3969853  1032
[4986] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {spore.print.color=w}        0.1270310  0.5308642 0.2392910 1.8060053  1032
[4987] {bruises=f,                                                                                                
        spore.print.color=w}        => {gill.spacing=c}             0.2230428  0.8404453 0.2653865 1.0023161  1812
[4988] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {bruises=f}                  0.2230428  0.8899804 0.2506155 1.5227886  1812
[4989] {bruises=f,                                                                                                
        gill.spacing=c}             => {spore.print.color=w}        0.2230428  0.5118644 0.4357459 1.7413679  1812
[4990] {bruises=f,                                                                                                
        spore.print.color=w}        => {ring.number=o}              0.2235352  0.8423006 0.2653865 0.9138421  1816
[4991] {ring.number=o,                                                                                            
        spore.print.color=w}        => {bruises=f}                  0.2235352  0.9956140 0.2245199 1.7035317  1816
[4992] {bruises=f,                                                                                                
        spore.print.color=w}        => {gill.attachment=f}          0.2631709  0.9916512 0.2653865 1.0179649  2138
[4993] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {bruises=f}                  0.2631709  0.9021097 0.2917282 1.5435424  2138
[4994] {bruises=f,                                                                                                
        spore.print.color=w}        => {veil.color=w}               0.2644018  0.9962894 0.2653865 1.0214355  2148
[4995] {veil.color=w,                                                                                             
        spore.print.color=w}        => {bruises=f}                  0.2644018  0.9025210 0.2929591 1.5442461  2148
[4996] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {gill.spacing=c}             0.1339242  0.8607595 0.1555884 1.0265429  1088
[4997] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1339242  0.5343811 0.2506155 0.8795203  1088
[4998] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {ring.number=o}              0.1102905  0.7088608 0.1555884 0.7690685   896
[4999] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {gill.attachment=f}          0.1555884  1.0000000 0.1555884 1.0265353  1264
[5000] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1555884  0.5333333 0.2917282 0.8777958  1264
[5001] {stalk.surface.below.ring=s,                                                                               
        spore.print.color=w}        => {veil.color=w}               0.1555884  1.0000000 0.1555884 1.0252398  1264
[5002] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.surface.below.ring=s} 0.1555884  0.5310924 0.2929591 0.8741076  1264
[5003] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {gill.spacing=c}             0.1339242  0.8607595 0.1555884 1.0265429  1088
[5004] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1339242  0.5343811 0.2506155 0.8387389  1088
[5005] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {ring.number=o}              0.1102905  0.7088608 0.1555884 0.7690685   896
[5006] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {gill.attachment=f}          0.1555884  1.0000000 0.1555884 1.0265353  1264
[5007] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1555884  0.5333333 0.2917282 0.8370943  1264
[5008] {stalk.surface.above.ring=s,                                                                               
        spore.print.color=w}        => {veil.color=w}               0.1555884  1.0000000 0.1555884 1.0252398  1264
[5009] {veil.color=w,                                                                                             
        spore.print.color=w}        => {stalk.surface.above.ring=s} 0.1555884  0.5310924 0.2929591 0.8335771  1264
[5010] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {ring.number=o}              0.2166420  0.8644401 0.2506155 0.9378621  1760
[5011] {ring.number=o,                                                                                            
        spore.print.color=w}        => {gill.spacing=c}             0.2166420  0.9649123 0.2245199 1.1507556  1760
[5012] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {gill.attachment=f}          0.2483998  0.9911591 0.2506155 1.0174598  2018
[5013] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {gill.spacing=c}             0.2483998  0.8514768 0.2917282 1.0154723  2018
[5014] {gill.spacing=c,                                                                                           
        spore.print.color=w}        => {veil.color=w}               0.2506155  1.0000000 0.2506155 1.0252398  2036
[5015] {veil.color=w,                                                                                             
        spore.print.color=w}        => {gill.spacing=c}             0.2506155  0.8554622 0.2929591 1.0202253  2036
[5016] {ring.number=o,                                                                                            
        spore.print.color=w}        => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[5017] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {ring.number=o}              0.2245199  0.7696203 0.2917282 0.8349886  1824
[5018] {ring.number=o,                                                                                            
        spore.print.color=w}        => {veil.color=w}               0.2235352  0.9956140 0.2245199 1.0207431  1816
[5019] {veil.color=w,                                                                                             
        spore.print.color=w}        => {ring.number=o}              0.2235352  0.7630252 0.2929591 0.8278334  1816
[5020] {gill.attachment=f,                                                                                        
        spore.print.color=w}        => {veil.color=w}               0.2907435  0.9966245 0.2917282 1.0217791  2362
[5021] {veil.color=w,                                                                                             
        spore.print.color=w}        => {gill.attachment=f}          0.2907435  0.9924370 0.2929591 1.0187715  2362
[5022] {cap.surface=s,                                                                                            
        stalk.root=?}               => {gill.size=n}                0.1063516  0.6666667 0.1595273 2.1560510   864
[5023] {cap.surface=s,                                                                                            
        gill.size=n}                => {stalk.root=?}               0.1063516  0.7605634 0.1398326 2.4914584   864
[5024] {gill.size=n,                                                                                              
        stalk.root=?}               => {ring.type=e}                0.2166420  0.9734513 0.2225505 2.8488179  1760
[5025] {stalk.root=?,                                                                                             
        ring.type=e}                => {gill.size=n}                0.2166420  0.9016393 0.2402757 2.9159706  1760
[5026] {gill.size=n,                                                                                              
        ring.type=e}                => {stalk.root=?}               0.2166420  0.9691630 0.2235352 3.1747904  1760
[5027] {gill.size=n,                                                                                              
        stalk.root=?}               => {cap.surface=y}              0.1142294  0.5132743 0.2225505 1.2854010   928
[5028] {cap.surface=y,                                                                                            
        stalk.root=?}               => {gill.size=n}                0.1142294  0.9062500 0.1260463 2.9308818   928
[5029] {cap.surface=y,                                                                                            
        gill.size=n}                => {stalk.root=?}               0.1142294  0.8498168 0.1344165 2.7838355   928
[5030] {gill.size=n,                                                                                              
        stalk.root=?}               => {class=p}                    0.2166420  0.9734513 0.2225505 2.0194889  1760
[5031] {class=p,                                                                                                  
        stalk.root=?}               => {gill.size=n}                0.2166420  1.0000000 0.2166420 3.2340764  1760
[5032] {class=p,                                                                                                  
        gill.size=n}                => {stalk.root=?}               0.2166420  0.7913669 0.2737568 2.5923648  1760
[5033] {gill.size=n,                                                                                              
        stalk.root=?}               => {population=v}               0.2195963  0.9867257 0.2225505 1.9841978  1784
[5034] {stalk.root=?,                                                                                             
        population=v}               => {gill.size=n}                0.2195963  0.9489362 0.2314131 3.0689321  1784
[5035] {gill.size=n,                                                                                              
        population=v}               => {stalk.root=?}               0.2195963  0.8109091 0.2708026 2.6563812  1784
[5036] {gill.size=n,                                                                                              
        stalk.root=?}               => {stalk.color.below.ring=w}   0.1122600  0.5044248 0.2225505 0.9347507   912
[5037] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {gill.size=n}                0.1122600  0.7037037 0.1595273 2.2758316   912
[5038] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.root=?}               0.1122600  0.5846154 0.1920236 1.9150868   912
[5039] {gill.size=n,                                                                                              
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1161989  0.5221239 0.2225505 0.9502093   944
[5040] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {gill.size=n}                0.1161989  0.7108434 0.1634663 2.2989218   944
[5041] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.root=?}               0.1161989  0.5756098 0.2018710 1.8855862   944
[5042] {gill.size=n,                                                                                              
        stalk.root=?}               => {stalk.shape=t}              0.2127031  0.9557522 0.2225505 1.6850111  1728
[5043] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {gill.size=n}                0.2127031  1.0000000 0.2127031 3.2340764  1728
[5044] {gill.size=n,                                                                                              
        stalk.shape=t}              => {stalk.root=?}               0.2127031  0.9473684 0.2245199 3.1033956  1728
[5045] {gill.size=n,                                                                                              
        stalk.root=?}               => {bruises=f}                  0.2225505  1.0000000 0.2225505 1.7110362  1808
[5046] {bruises=f,                                                                                                
        stalk.root=?}               => {gill.size=n}                0.2225505  0.7902098 0.2816347 2.5555989  1808
[5047] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.root=?}               0.2225505  0.8401487 0.2648941 2.7521645  1808
[5048] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {gill.size=n}                0.1063516  0.6206897 0.1713442 2.0073578   864
[5049] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.root=?}               0.1063516  0.5625000 0.1890694 1.8426411   864
[5050] {gill.size=n,                                                                                              
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1122600  0.5044248 0.2225505 0.7917208   912
[5051] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {gill.size=n}                0.1122600  0.6333333 0.1772526 2.0482484   912
[5052] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.root=?}               0.1122600  0.5757576 0.1949778 1.8860704   912
[5053] {gill.size=n,                                                                                              
        stalk.root=?}               => {gill.spacing=c}             0.2225505  1.0000000 0.2225505 1.1926013  1808
[5054] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {gill.size=n}                0.2225505  0.8248175 0.2698178 2.6675229  1808
[5055] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.root=?}               0.2225505  0.8014184 0.2776957 2.6252917  1808
[5056] {gill.size=n,                                                                                              
        stalk.root=?}               => {ring.number=o}              0.2225505  1.0000000 0.2225505 1.0849359  1808
[5057] {stalk.root=?,                                                                                             
        ring.number=o}              => {gill.size=n}                0.2225505  0.9040000 0.2461841 2.9236051  1808
[5058] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.root=?}               0.2225505  0.7197452 0.3092073 2.3577460  1808
[5059] {gill.size=n,                                                                                              
        stalk.root=?}               => {gill.attachment=f}          0.2225505  1.0000000 0.2225505 1.0265353  1808
[5060] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {gill.size=n}                0.2225505  0.7902098 0.2816347 2.5555989  1808
[5061] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.root=?}               0.2225505  0.7197452 0.3092073 2.3577460  1808
[5062] {gill.size=n,                                                                                              
        stalk.root=?}               => {veil.color=w}               0.2225505  1.0000000 0.2225505 1.0252398  1808
[5063] {stalk.root=?,                                                                                             
        veil.color=w}               => {gill.size=n}                0.2225505  0.7902098 0.2816347 2.5555989  1808
[5064] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.root=?}               0.2225505  0.7220447 0.3082226 2.3652788  1808
[5065] {cap.surface=s,                                                                                            
        stalk.root=?}               => {ring.type=e}                0.1181684  0.7407407 0.1595273 2.1677874   960
[5066] {cap.surface=s,                                                                                            
        ring.type=e}                => {stalk.root=?}               0.1181684  0.7142857 0.1654357 2.3398618   960
[5067] {cap.surface=s,                                                                                            
        stalk.root=?}               => {class=p}                    0.1063516  0.6666667 0.1595273 1.3830439   864
[5068] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.root=?}               0.1063516  0.6118980 0.1738060 2.0044595   864
[5069] {cap.surface=s,                                                                                            
        stalk.root=?}               => {population=v}               0.1181684  0.7407407 0.1595273 1.4895490   960
[5070] {stalk.root=?,                                                                                             
        population=v}               => {cap.surface=s}              0.1181684  0.5106383 0.2314131 1.6230147   960
[5071] {cap.surface=s,                                                                                            
        population=v}               => {stalk.root=?}               0.1181684  0.7339450 0.1610044 2.4042616   960
[5072] {cap.surface=s,                                                                                            
        stalk.root=?}               => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[5073] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[5074] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {stalk.root=?}               0.1063516  0.5454545 0.1949778 1.7868035   864
[5075] {cap.surface=s,                                                                                            
        stalk.root=?}               => {bruises=f}                  0.1477105  0.9259259 0.1595273 1.5842928  1200
[5076] {bruises=f,                                                                                                
        stalk.root=?}               => {cap.surface=s}              0.1477105  0.5244755 0.2816347 1.6669950  1200
[5077] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.root=?}               0.1477105  0.7109005 0.2077794 2.3287724  1200
[5078] {cap.surface=s,                                                                                            
        stalk.root=?}               => {gill.spacing=c}             0.1418021  0.8888889 0.1595273 1.0600900  1152
[5079] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {cap.surface=s}              0.1418021  0.5255474 0.2698178 1.6704020  1152
[5080] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.root=?}               0.1418021  0.5962733 0.2378139 1.9532759  1152
[5081] {cap.surface=s,                                                                                            
        stalk.root=?}               => {ring.number=o}              0.1299852  0.8148148 0.1595273 0.8840218  1056
[5082] {stalk.root=?,                                                                                             
        ring.number=o}              => {cap.surface=s}              0.1299852  0.5280000 0.2461841 1.6781972  1056
[5083] {cap.surface=s,                                                                                            
        stalk.root=?}               => {gill.attachment=f}          0.1358936  0.8518519 0.1595273 0.8744560  1104
[5084] {cap.surface=s,                                                                                            
        stalk.root=?}               => {veil.color=w}               0.1358936  0.8518519 0.1595273 0.8733524  1104
[5085] {stalk.root=?,                                                                                             
        ring.type=e}                => {cap.surface=y}              0.1201379  0.5000000 0.2402757 1.2521578   976
[5086] {cap.surface=y,                                                                                            
        stalk.root=?}               => {ring.type=e}                0.1201379  0.9531250 0.1260463 2.7893327   976
[5087] {cap.surface=y,                                                                                            
        ring.type=e}                => {stalk.root=?}               0.1201379  0.9682540 0.1240768 3.1718126   976
[5088] {stalk.root=?,                                                                                             
        ring.type=e}                => {class=p}                    0.2166420  0.9016393 0.2402757 1.8705102  1760
[5089] {class=p,                                                                                                  
        stalk.root=?}               => {ring.type=e}                0.2166420  1.0000000 0.2166420 2.9265130  1760
[5090] {class=p,                                                                                                  
        ring.type=e}                => {stalk.root=?}               0.2166420  0.9954751 0.2176268 3.2609838  1760
[5091] {stalk.root=?,                                                                                             
        ring.type=e}                => {population=v}               0.2166420  0.9016393 0.2402757 1.8130985  1760
[5092] {stalk.root=?,                                                                                             
        population=v}               => {ring.type=e}                0.2166420  0.9361702 0.2314131 2.7397143  1760
[5093] {ring.type=e,                                                                                              
        population=v}               => {stalk.root=?}               0.2166420  0.9734513 0.2225505 3.1888381  1760
[5094] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {ring.type=e}                0.1181684  0.7407407 0.1595273 2.1677874   960
[5095] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {stalk.root=?}               0.1181684  0.5555556 0.2127031 1.8198925   960
[5096] {stalk.root=?,                                                                                             
        ring.type=e}                => {stalk.color.above.ring=w}   0.1221073  0.5081967 0.2402757 0.9248634   992
[5097] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {ring.type=e}                0.1221073  0.7469880 0.1634663 2.1860699   992
[5098] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {stalk.root=?}               0.1221073  0.5486726 0.2225505 1.7973451   992
[5099] {stalk.root=?,                                                                                             
        ring.type=e}                => {stalk.shape=t}              0.2127031  0.8852459 0.2402757 1.5607070  1728
[5100] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {ring.type=e}                0.2127031  1.0000000 0.2127031 2.9265130  1728
[5101] {stalk.shape=t,                                                                                            
        ring.type=e}                => {stalk.root=?}               0.2127031  0.6923077 0.3072378 2.2678660  1728
[5102] {stalk.root=?,                                                                                             
        ring.type=e}                => {bruises=f}                  0.2166420  0.9016393 0.2402757 1.5427376  1760
[5103] {bruises=f,                                                                                                
        stalk.root=?}               => {ring.type=e}                0.2166420  0.7692308 0.2816347 2.2511638  1760
[5104] {bruises=f,                                                                                                
        ring.type=e}                => {stalk.root=?}               0.2166420  0.6811146 0.3180699 2.2311994  1760
[5105] {stalk.root=?,                                                                                             
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1299852  0.5409836 0.2402757 0.8903871  1056
[5106] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {ring.type=e}                0.1299852  0.7586207 0.1713442 2.2201133  1056
[5107] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {stalk.root=?}               0.1299852  0.7213115 0.1802068 2.3628768  1056
[5108] {stalk.root=?,                                                                                             
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1299852  0.5409836 0.2402757 0.8491018  1056
[5109] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {ring.type=e}                0.1299852  0.7333333 0.1772526 2.1461095  1056
[5110] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {stalk.root=?}               0.1299852  0.7213115 0.1802068 2.3628768  1056
[5111] {stalk.root=?,                                                                                             
        ring.type=e}                => {gill.spacing=c}             0.2402757  1.0000000 0.2402757 1.1926013  1952
[5112] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {ring.type=e}                0.2402757  0.8905109 0.2698178 2.6060918  1952
[5113] {gill.spacing=c,                                                                                           
        ring.type=e}                => {stalk.root=?}               0.2402757  1.0000000 0.2402757 3.2758065  1952
[5114] {stalk.root=?,                                                                                             
        ring.type=e}                => {ring.number=o}              0.2166420  0.9016393 0.2402757 0.9782209  1760
[5115] {stalk.root=?,                                                                                             
        ring.number=o}              => {ring.type=e}                0.2166420  0.8800000 0.2461841 2.5753314  1760
[5116] {ring.number=o,                                                                                            
        ring.type=e}                => {stalk.root=?}               0.2166420  0.6811146 0.3180699 2.2311994  1760
[5117] {stalk.root=?,                                                                                             
        ring.type=e}                => {gill.attachment=f}          0.2402757  1.0000000 0.2402757 1.0265353  1952
[5118] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {ring.type=e}                0.2402757  0.8531469 0.2816347 2.4967453  1952
[5119] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.root=?}               0.2402757  0.7031700 0.3417036 2.3034489  1952
[5120] {stalk.root=?,                                                                                             
        ring.type=e}                => {veil.color=w}               0.2402757  1.0000000 0.2402757 1.0252398  1952
[5121] {stalk.root=?,                                                                                             
        veil.color=w}               => {ring.type=e}                0.2402757  0.8531469 0.2816347 2.4967453  1952
[5122] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.root=?}               0.2402757  0.7052023 0.3407189 2.3101063  1952
[5123] {cap.surface=y,                                                                                            
        stalk.root=?}               => {class=p}                    0.1083210  0.8593750 0.1260463 1.7828301   880
[5124] {class=p,                                                                                                  
        stalk.root=?}               => {cap.surface=y}              0.1083210  0.5000000 0.2166420 1.2521578   880
[5125] {class=p,                                                                                                  
        cap.surface=y}              => {stalk.root=?}               0.1083210  0.5057471 0.2141802 1.6567297   880
[5126] {cap.surface=y,                                                                                            
        stalk.root=?}               => {population=v}               0.1112752  0.8828125 0.1260463 1.7752398   904
[5127] {cap.surface=y,                                                                                            
        population=v}               => {stalk.root=?}               0.1112752  0.5044643 0.2205810 1.6525274   904
[5128] {cap.surface=y,                                                                                            
        stalk.root=?}               => {stalk.shape=t}              0.1063516  0.8437500 0.1260463 1.4875488   864
[5129] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {cap.surface=y}              0.1063516  0.5000000 0.2127031 1.2521578   864
[5130] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {stalk.root=?}               0.1063516  0.5000000 0.2127031 1.6379032   864
[5131] {cap.surface=y,                                                                                            
        stalk.root=?}               => {bruises=f}                  0.1142294  0.9062500 0.1260463 1.5506266   928
[5132] {cap.surface=y,                                                                                            
        bruises=f}                  => {stalk.root=?}               0.1142294  0.5617433 0.2033481 1.8401625   928
[5133] {cap.surface=y,                                                                                            
        stalk.root=?}               => {gill.spacing=c}             0.1260463  1.0000000 0.1260463 1.1926013  1024
[5134] {cap.surface=y,                                                                                            
        stalk.root=?}               => {ring.number=o}              0.1142294  0.9062500 0.1260463 0.9832232   928
[5135] {cap.surface=y,                                                                                            
        stalk.root=?}               => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[5136] {cap.surface=y,                                                                                            
        stalk.root=?}               => {veil.color=w}               0.1260463  1.0000000 0.1260463 1.0252398  1024
[5137] {class=p,                                                                                                  
        stalk.root=?}               => {population=v}               0.2166420  1.0000000 0.2166420 2.0108911  1760
[5138] {stalk.root=?,                                                                                             
        population=v}               => {class=p}                    0.2166420  0.9361702 0.2314131 1.9421468  1760
[5139] {class=p,                                                                                                  
        population=v}               => {stalk.root=?}               0.2166420  0.6179775 0.3505662 2.0243748  1760
[5140] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {class=p}                    0.1063516  0.6666667 0.1595273 1.3830439   864
[5141] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.root=?}               0.1063516  0.5142857 0.2067947 1.6847005   864
[5142] {class=p,                                                                                                  
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1102905  0.5090909 0.2166420 0.9264907   896
[5143] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {class=p}                    0.1102905  0.6746988 0.1634663 1.3997071   896
[5144] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.root=?}               0.1102905  0.5233645 0.2107336 1.7144408   896
[5145] {class=p,                                                                                                  
        stalk.root=?}               => {stalk.shape=t}              0.2127031  0.9818182 0.2166420 1.7309659  1728
[5146] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {class=p}                    0.2127031  1.0000000 0.2127031 2.0745659  1728
[5147] {class=p,                                                                                                  
        stalk.shape=t}              => {stalk.root=?}               0.2127031  0.8571429 0.2481536 2.8078341  1728
[5148] {class=p,                                                                                                  
        stalk.root=?}               => {bruises=f}                  0.2166420  1.0000000 0.2166420 1.7110362  1760
[5149] {bruises=f,                                                                                                
        stalk.root=?}               => {class=p}                    0.2166420  0.7692308 0.2816347 1.5958199  1760
[5150] {class=p,                                                                                                  
        bruises=f}                  => {stalk.root=?}               0.2166420  0.5346294 0.4052191 1.7513425  1760
[5151] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {class=p}                    0.1063516  0.6206897 0.1713442 1.2876616   864
[5152] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.root=?}               0.1063516  0.5625000 0.1890694 1.8426411   864
[5153] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {class=p}                    0.1063516  0.6000000 0.1772526 1.2447395   864
[5154] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.root=?}               0.1063516  0.5625000 0.1890694 1.8426411   864
[5155] {class=p,                                                                                                  
        stalk.root=?}               => {gill.spacing=c}             0.2166420  1.0000000 0.2166420 1.1926013  1760
[5156] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {class=p}                    0.2166420  0.8029197 0.2698178 1.6657098  1760
[5157] {class=p,                                                                                                  
        stalk.root=?}               => {ring.number=o}              0.2166420  1.0000000 0.2166420 1.0849359  1760
[5158] {stalk.root=?,                                                                                             
        ring.number=o}              => {class=p}                    0.2166420  0.8800000 0.2461841 1.8256180  1760
[5159] {class=p,                                                                                                  
        stalk.root=?}               => {gill.attachment=f}          0.2166420  1.0000000 0.2166420 1.0265353  1760
[5160] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {class=p}                    0.2166420  0.7692308 0.2816347 1.5958199  1760
[5161] {class=p,                                                                                                  
        stalk.root=?}               => {veil.color=w}               0.2166420  1.0000000 0.2166420 1.0252398  1760
[5162] {stalk.root=?,                                                                                             
        veil.color=w}               => {class=p}                    0.2166420  0.7692308 0.2816347 1.5958199  1760
[5163] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {population=v}               0.1093058  0.6851852 0.1595273 1.3778328   888
[5164] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {stalk.root=?}               0.1093058  0.5000000 0.2186115 1.6379032   888
[5165] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {population=v}               0.1132447  0.6927711 0.1634663 1.3930872   920
[5166] {stalk.root=?,                                                                                             
        population=v}               => {stalk.shape=t}              0.2127031  0.9191489 0.2314131 1.6204787  1728
[5167] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {population=v}               0.2127031  1.0000000 0.2127031 2.0108911  1728
[5168] {stalk.shape=t,                                                                                            
        population=v}               => {stalk.root=?}               0.2127031  0.6101695 0.3485968 1.9987972  1728
[5169] {stalk.root=?,                                                                                             
        population=v}               => {bruises=f}                  0.2314131  1.0000000 0.2314131 1.7110362  1880
[5170] {bruises=f,                                                                                                
        stalk.root=?}               => {population=v}               0.2314131  0.8216783 0.2816347 1.6523056  1880
[5171] {bruises=f,                                                                                                
        population=v}               => {stalk.root=?}               0.2314131  0.6911765 0.3348104 2.2641603  1880
[5172] {stalk.root=?,                                                                                             
        population=v}               => {stalk.surface.below.ring=s} 0.1181684  0.5106383 0.2314131 0.8404428   960
[5173] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {population=v}               0.1181684  0.6896552 0.1713442 1.3868214   960
[5174] {stalk.root=?,                                                                                             
        population=v}               => {stalk.surface.above.ring=s} 0.1211226  0.5234043 0.2314131 0.8215101   984
[5175] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {population=v}               0.1211226  0.6833333 0.1772526 1.3741089   984
[5176] {stalk.root=?,                                                                                             
        population=v}               => {gill.spacing=c}             0.2314131  1.0000000 0.2314131 1.1926013  1880
[5177] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {population=v}               0.2314131  0.8576642 0.2698178 1.7246694  1880
[5178] {stalk.root=?,                                                                                             
        population=v}               => {ring.number=o}              0.2314131  1.0000000 0.2314131 1.0849359  1880
[5179] {stalk.root=?,                                                                                             
        ring.number=o}              => {population=v}               0.2314131  0.9400000 0.2461841 1.8902376  1880
[5180] {stalk.root=?,                                                                                             
        population=v}               => {gill.attachment=f}          0.2195963  0.9489362 0.2314131 0.9741164  1784
[5181] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {population=v}               0.2195963  0.7797203 0.2816347 1.5679326  1784
[5182] {stalk.root=?,                                                                                             
        population=v}               => {veil.color=w}               0.2195963  0.9489362 0.2314131 0.9728871  1784
[5183] {stalk.root=?,                                                                                             
        veil.color=w}               => {population=v}               0.2195963  0.7797203 0.2816347 1.5679326  1784
[5184] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1004431  0.6296296 0.1595273 1.1458582   816
[5185] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1004431  0.6144578 0.1634663 1.1386532   816
[5186] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1063516  0.6666667 0.1595273 1.1753472   864
[5187] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.color.below.ring=w}   0.1063516  0.5000000 0.2127031 0.9265511   864
[5188] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {bruises=f}                  0.1477105  0.9259259 0.1595273 1.5842928  1200
[5189] {bruises=f,                                                                                                
        stalk.root=?}               => {stalk.color.below.ring=w}   0.1477105  0.5244755 0.2816347 0.9719067  1200
[5190] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {stalk.root=?}               0.1477105  0.5319149 0.2776957 1.7424502  1200
[5191] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1240768  0.7777778 0.1595273 0.9275788  1008
[5192] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {ring.number=o}              0.1122600  0.7037037 0.1595273 0.7634734   912
[5193] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1595273  1.0000000 0.1595273 1.0265353  1296
[5194] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {stalk.color.below.ring=w}   0.1595273  0.5664336 0.2816347 1.0496593  1296
[5195] {stalk.root=?,                                                                                             
        stalk.color.below.ring=w}   => {veil.color=w}               0.1595273  1.0000000 0.1595273 1.0252398  1296
[5196] {stalk.root=?,                                                                                             
        veil.color=w}               => {stalk.color.below.ring=w}   0.1595273  0.5664336 0.2816347 1.0496593  1296
[5197] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1063516  0.6506024 0.1634663 1.1470256   864
[5198] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1063516  0.5000000 0.2127031 0.9099462   864
[5199] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {bruises=f}                  0.1516494  0.9277108 0.1634663 1.5873469  1232
[5200] {bruises=f,                                                                                                
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1516494  0.5384615 0.2816347 0.9799421  1232
[5201] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {stalk.root=?}               0.1516494  0.5273973 0.2875431 1.7276513  1232
[5202] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1280158  0.7831325 0.1634663 0.9339649  1040
[5203] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {ring.number=o}              0.1161989  0.7108434 0.1634663 0.7712195   944
[5204] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1634663  1.0000000 0.1634663 1.0265353  1328
[5205] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {stalk.color.above.ring=w}   0.1634663  0.5804196 0.2816347 1.0563012  1328
[5206] {stalk.root=?,                                                                                             
        stalk.color.above.ring=w}   => {veil.color=w}               0.1634663  1.0000000 0.1634663 1.0252398  1328
[5207] {stalk.root=?,                                                                                             
        veil.color=w}               => {stalk.color.above.ring=w}   0.1634663  0.5804196 0.2816347 1.0563012  1328
[5208] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {bruises=f}                  0.2127031  1.0000000 0.2127031 1.7110362  1728
[5209] {bruises=f,                                                                                                
        stalk.root=?}               => {stalk.shape=t}              0.2127031  0.7552448 0.2816347 1.3315122  1728
[5210] {bruises=f,                                                                                                
        stalk.shape=t}              => {stalk.root=?}               0.2127031  0.6923077 0.3072378 2.2678660  1728
[5211] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.surface.below.ring=s} 0.1063516  0.5000000 0.2127031 0.8229335   864
[5212] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1063516  0.6206897 0.1713442 1.0942888   864
[5213] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1063516  0.5000000 0.2127031 0.7847759   864
[5214] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1063516  0.6000000 0.1772526 1.0578125   864
[5215] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[5216] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {stalk.shape=t}              0.2127031  0.7883212 0.2698178 1.3898266  1728
[5217] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[5218] {stalk.root=?,                                                                                             
        ring.number=o}              => {stalk.shape=t}              0.2127031  0.8640000 0.2461841 1.5232500  1728
[5219] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[5220] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {stalk.shape=t}              0.2127031  0.7552448 0.2816347 1.3315122  1728
[5221] {stalk.shape=t,                                                                                            
        stalk.root=?}               => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[5222] {stalk.root=?,                                                                                             
        veil.color=w}               => {stalk.shape=t}              0.2127031  0.7552448 0.2816347 1.3315122  1728
[5223] {bruises=f,                                                                                                
        stalk.root=?}               => {stalk.surface.below.ring=s} 0.1477105  0.5244755 0.2816347 0.8632170  1200
[5224] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {bruises=f}                  0.1477105  0.8620690 0.1713442 1.4750312  1200
[5225] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {stalk.root=?}               0.1477105  0.6329114 0.2333826 2.0732952  1200
[5226] {bruises=f,                                                                                                
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1536189  0.5454545 0.2816347 0.8561192  1248
[5227] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {bruises=f}                  0.1536189  0.8666667 0.1772526 1.4828981  1248
[5228] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {stalk.root=?}               0.1536189  0.6419753 0.2392910 2.1029869  1248
[5229] {bruises=f,                                                                                                
        stalk.root=?}               => {gill.spacing=c}             0.2461841  0.8741259 0.2816347 1.0424836  2000
[5230] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {bruises=f}                  0.2461841  0.9124088 0.2698178 1.5611644  2000
[5231] {bruises=f,                                                                                                
        gill.spacing=c}             => {stalk.root=?}               0.2461841  0.5649718 0.4357459 1.8507381  2000
[5232] {bruises=f,                                                                                                
        stalk.root=?}               => {ring.number=o}              0.2461841  0.8741259 0.2816347 0.9483705  2000
[5233] {stalk.root=?,                                                                                             
        ring.number=o}              => {bruises=f}                  0.2461841  1.0000000 0.2461841 1.7110362  2000
[5234] {bruises=f,                                                                                                
        stalk.root=?}               => {gill.attachment=f}          0.2580010  0.9160839 0.2816347 0.9403924  2096
[5235] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {bruises=f}                  0.2580010  0.9160839 0.2816347 1.5674528  2096
[5236] {bruises=f,                                                                                                
        stalk.root=?}               => {veil.color=w}               0.2580010  0.9160839 0.2816347 0.9392057  2096
[5237] {stalk.root=?,                                                                                             
        veil.color=w}               => {bruises=f}                  0.2580010  0.9160839 0.2816347 1.5674528  2096
[5238] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1093058  0.6379310 0.1713442 1.0012658   888
[5239] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1093058  0.6166667 0.1772526 1.0149514   888
[5240] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1536189  0.8965517 0.1713442 1.0692287  1248
[5241] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {stalk.surface.below.ring=s} 0.1536189  0.5693431 0.2698178 0.9370630  1248
[5242] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {ring.number=o}              0.1299852  0.7586207 0.1713442 0.8230548  1056
[5243] {stalk.root=?,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1299852  0.5280000 0.2461841 0.8690178  1056
[5244] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1477105  0.8620690 0.1713442 0.8849442  1200
[5245] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {stalk.surface.below.ring=s} 0.1477105  0.5244755 0.2816347 0.8632170  1200
[5246] {stalk.root=?,                                                                                             
        stalk.surface.below.ring=s} => {veil.color=w}               0.1477105  0.8620690 0.1713442 0.8838274  1200
[5247] {stalk.root=?,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1477105  0.5244755 0.2816347 0.8632170  1200
[5248] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1595273  0.9000000 0.1772526 1.0733412  1296
[5249] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1595273  0.5912409 0.2698178 0.9279832  1296
[5250] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {ring.number=o}              0.1358936  0.7666667 0.1772526 0.8317842  1104
[5251] {stalk.root=?,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1358936  0.5520000 0.2461841 0.8663926  1104
[5252] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1536189  0.8666667 0.1772526 0.8896639  1248
[5253] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {stalk.surface.above.ring=s} 0.1536189  0.5454545 0.2816347 0.8561192  1248
[5254] {stalk.root=?,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.1536189  0.8666667 0.1772526 0.8885411  1248
[5255] {stalk.root=?,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1536189  0.5454545 0.2816347 0.8561192  1248
[5256] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {ring.number=o}              0.2461841  0.9124088 0.2698178 0.9899050  2000
[5257] {stalk.root=?,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.2461841  1.0000000 0.2461841 1.1926013  2000
[5258] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {gill.attachment=f}          0.2461841  0.9124088 0.2698178 0.9366198  2000
[5259] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {gill.spacing=c}             0.2461841  0.8741259 0.2816347 1.0424836  2000
[5260] {gill.spacing=c,                                                                                           
        stalk.root=?}               => {veil.color=w}               0.2461841  0.9124088 0.2698178 0.9354378  2000
[5261] {stalk.root=?,                                                                                             
        veil.color=w}               => {gill.spacing=c}             0.2461841  0.8741259 0.2816347 1.0424836  2000
[5262] {stalk.root=?,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.2225505  0.9040000 0.2461841 0.9279879  1808
[5263] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {ring.number=o}              0.2225505  0.7902098 0.2816347 0.8573270  1808
[5264] {stalk.root=?,                                                                                             
        ring.number=o}              => {veil.color=w}               0.2225505  0.9040000 0.2461841 0.9268168  1808
[5265] {stalk.root=?,                                                                                             
        veil.color=w}               => {ring.number=o}              0.2225505  0.7902098 0.2816347 0.8573270  1808
[5266] {gill.attachment=f,                                                                                        
        stalk.root=?}               => {veil.color=w}               0.2816347  1.0000000 0.2816347 1.0252398  2288
[5267] {stalk.root=?,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.2816347  1.0000000 0.2816347 1.0265353  2288
[5268] {cap.surface=s,                                                                                            
        gill.size=n}                => {ring.type=e}                0.1063516  0.7605634 0.1398326 2.2257986   864
[5269] {cap.surface=s,                                                                                            
        ring.type=e}                => {gill.size=n}                0.1063516  0.6428571 0.1654357 2.0790491   864
[5270] {cap.surface=s,                                                                                            
        gill.size=n}                => {class=p}                    0.1339242  0.9577465 0.1398326 1.9869082  1088
[5271] {class=p,                                                                                                  
        cap.surface=s}              => {gill.size=n}                0.1339242  0.7705382 0.1738060 2.4919796  1088
[5272] {cap.surface=s,                                                                                            
        gill.size=n}                => {population=v}               0.1260463  0.9014085 0.1398326 1.8126342  1024
[5273] {cap.surface=s,                                                                                            
        population=v}               => {gill.size=n}                0.1260463  0.7828746 0.1610044 2.5318764  1024
[5274] {cap.surface=s,                                                                                            
        gill.size=n}                => {stalk.shape=t}              0.1122600  0.8028169 0.1398326 1.4153829   912
[5275] {gill.size=n,                                                                                              
        stalk.shape=t}              => {cap.surface=s}              0.1122600  0.5000000 0.2245199 1.5892019   912
[5276] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {gill.size=n}                0.1122600  0.5757576 0.1949778 1.8620440   912
[5277] {cap.surface=s,                                                                                            
        gill.size=n}                => {bruises=f}                  0.1181684  0.8450704 0.1398326 1.4459461   960
[5278] {cap.surface=s,                                                                                            
        bruises=f}                  => {gill.size=n}                0.1181684  0.5687204 0.2077794 1.8392852   960
[5279] {cap.surface=s,                                                                                            
        gill.size=n}                => {gill.spacing=c}             0.1280158  0.9154930 0.1398326 1.0918181  1040
[5280] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {gill.size=n}                0.1280158  0.5383023 0.2378139 1.7409107  1040
[5281] {cap.surface=s,                                                                                            
        gill.size=n}                => {ring.number=o}              0.1398326  1.0000000 0.1398326 1.0849359  1136
[5282] {cap.surface=s,                                                                                            
        ring.number=o}              => {gill.size=n}                0.1398326  0.5035461 0.2776957 1.6285066  1136
[5283] {cap.surface=s,                                                                                            
        gill.size=n}                => {gill.attachment=f}          0.1398326  1.0000000 0.1398326 1.0265353  1136
[5284] {cap.surface=s,                                                                                            
        gill.size=n}                => {veil.color=w}               0.1398326  1.0000000 0.1398326 1.0252398  1136
[5285] {gill.size=n,                                                                                              
        ring.type=e}                => {cap.surface=y}              0.1122600  0.5022026 0.2235352 1.2576739   912
[5286] {cap.surface=y,                                                                                            
        gill.size=n}                => {ring.type=e}                0.1122600  0.8351648 0.1344165 2.4441207   912
[5287] {cap.surface=y,                                                                                            
        ring.type=e}                => {gill.size=n}                0.1122600  0.9047619 0.1240768 2.9260692   912
[5288] {gill.size=n,                                                                                              
        ring.type=e}                => {class=p}                    0.2176268  0.9735683 0.2235352 2.0197315  1768
[5289] {class=p,                                                                                                  
        gill.size=n}                => {ring.type=e}                0.2176268  0.7949640 0.2737568 2.3264725  1768
[5290] {class=p,                                                                                                  
        ring.type=e}                => {gill.size=n}                0.2176268  1.0000000 0.2176268 3.2340764  1768
[5291] {gill.size=n,                                                                                              
        ring.type=e}                => {population=v}               0.2225505  0.9955947 0.2235352 2.0020325  1808
[5292] {gill.size=n,                                                                                              
        population=v}               => {ring.type=e}                0.2225505  0.8218182 0.2708026 2.4050616  1808
[5293] {ring.type=e,                                                                                              
        population=v}               => {gill.size=n}                0.2225505  1.0000000 0.2225505 3.2340764  1808
[5294] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {ring.type=e}                0.1063516  0.5538462 0.1920236 1.6208380   864
[5295] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {gill.size=n}                0.1063516  0.5000000 0.2127031 1.6170382   864
[5296] {gill.size=n,                                                                                              
        ring.type=e}                => {stalk.color.above.ring=w}   0.1161989  0.5198238 0.2235352 0.9460234   944
[5297] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {ring.type=e}                0.1161989  0.5756098 0.2018710 1.6845294   944
[5298] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {gill.size=n}                0.1161989  0.5221239 0.2225505 1.6885886   944
[5299] {gill.size=n,                                                                                              
        ring.type=e}                => {stalk.shape=t}              0.2127031  0.9515419 0.2235352 1.6775881  1728
[5300] {gill.size=n,                                                                                              
        stalk.shape=t}              => {ring.type=e}                0.2127031  0.9473684 0.2245199 2.7724860  1728
[5301] {stalk.shape=t,                                                                                            
        ring.type=e}                => {gill.size=n}                0.2127031  0.6923077 0.3072378 2.2389760  1728
[5302] {gill.size=n,                                                                                              
        ring.type=e}                => {bruises=f}                  0.2235352  1.0000000 0.2235352 1.7110362  1816
[5303] {bruises=f,                                                                                                
        gill.size=n}                => {ring.type=e}                0.2235352  0.8438662 0.2648941 2.4695853  1816
[5304] {bruises=f,                                                                                                
        ring.type=e}                => {gill.size=n}                0.2235352  0.7027864 0.3180699 2.2728649  1816
[5305] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=e}                0.1093058  0.5781250 0.1890694 1.6918903   888
[5306] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {gill.size=n}                0.1093058  0.6065574 0.1802068 1.9616529   888
[5307] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=e}                0.1093058  0.5606061 0.1949778 1.6406209   888
[5308] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {gill.size=n}                0.1093058  0.6065574 0.1802068 1.9616529   888
[5309] {gill.size=n,                                                                                              
        ring.type=e}                => {gill.spacing=c}             0.2166420  0.9691630 0.2235352 1.1558250  1760
[5310] {gill.spacing=c,                                                                                           
        gill.size=n}                => {ring.type=e}                0.2166420  0.7801418 0.2776957 2.2830952  1760
[5311] {gill.spacing=c,                                                                                           
        ring.type=e}                => {gill.size=n}                0.2166420  0.9016393 0.2402757 2.9159706  1760
[5312] {gill.size=n,                                                                                              
        ring.type=e}                => {ring.number=o}              0.2235352  1.0000000 0.2235352 1.0849359  1816
[5313] {gill.size=n,                                                                                              
        ring.number=o}              => {ring.type=e}                0.2235352  0.7229299 0.3092073 2.1156638  1816
[5314] {ring.number=o,                                                                                            
        ring.type=e}                => {gill.size=n}                0.2235352  0.7027864 0.3180699 2.2728649  1816
[5315] {gill.size=n,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.2235352  1.0000000 0.2235352 1.0265353  1816
[5316] {gill.attachment=f,                                                                                        
        gill.size=n}                => {ring.type=e}                0.2235352  0.7229299 0.3092073 2.1156638  1816
[5317] {gill.attachment=f,                                                                                        
        ring.type=e}                => {gill.size=n}                0.2235352  0.6541787 0.3417036 2.1156638  1816
[5318] {gill.size=n,                                                                                              
        ring.type=e}                => {veil.color=w}               0.2225505  0.9955947 0.2235352 1.0207233  1808
[5319] {gill.size=n,                                                                                              
        veil.color=w}               => {ring.type=e}                0.2225505  0.7220447 0.3082226 2.1130733  1808
[5320] {veil.color=w,                                                                                             
        ring.type=e}                => {gill.size=n}                0.2225505  0.6531792 0.3407189 2.1124314  1808
[5321] {gill.size=n,                                                                                              
        habitat=d}                  => {population=v}               0.1014279  0.8728814 0.1161989 1.7552693   824
[5322] {gill.size=n,                                                                                              
        habitat=d}                  => {bruises=f}                  0.1043821  0.8983051 0.1161989 1.5370325   848
[5323] {bruises=f,                                                                                                
        habitat=d}                  => {gill.size=n}                0.1043821  0.6404834 0.1629739 2.0713722   848
[5324] {gill.size=n,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1161989  1.0000000 0.1161989 1.0849359   944
[5325] {gill.size=n,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1161989  1.0000000 0.1161989 1.0265353   944
[5326] {gill.size=n,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1161989  1.0000000 0.1161989 1.0252398   944
[5327] {cap.shape=f,                                                                                              
        gill.size=n}                => {ring.number=o}              0.1029050  1.0000000 0.1029050 1.0849359   836
[5328] {cap.shape=f,                                                                                              
        gill.size=n}                => {gill.attachment=f}          0.1029050  1.0000000 0.1029050 1.0265353   836
[5329] {cap.shape=f,                                                                                              
        gill.size=n}                => {veil.color=w}               0.1026588  0.9976077 0.1029050 1.0227871   834
[5330] {cap.surface=y,                                                                                            
        gill.size=n}                => {class=p}                    0.1255539  0.9340659 0.1344165 1.9377813  1020
[5331] {class=p,                                                                                                  
        cap.surface=y}              => {gill.size=n}                0.1255539  0.5862069 0.2141802 1.8958379  1020
[5332] {cap.surface=y,                                                                                            
        gill.size=n}                => {population=v}               0.1221073  0.9084249 0.1344165 1.8267436   992
[5333] {cap.surface=y,                                                                                            
        population=v}               => {gill.size=n}                0.1221073  0.5535714 0.2205810 1.7902923   992
[5334] {cap.surface=y,                                                                                            
        gill.size=n}                => {stalk.shape=t}              0.1063516  0.7912088 0.1344165 1.3949176   864
[5335] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {gill.size=n}                0.1063516  0.5000000 0.2127031 1.6170382   864
[5336] {cap.surface=y,                                                                                            
        gill.size=n}                => {bruises=f}                  0.1181684  0.8791209 0.1344165 1.5042077   960
[5337] {cap.surface=y,                                                                                            
        bruises=f}                  => {gill.size=n}                0.1181684  0.5811138 0.2033481 1.8793665   960
[5338] {cap.surface=y,                                                                                            
        gill.size=n}                => {gill.spacing=c}             0.1299852  0.9670330 0.1344165 1.1532848  1056
[5339] {cap.surface=y,                                                                                            
        gill.size=n}                => {ring.number=o}              0.1344165  1.0000000 0.1344165 1.0849359  1092
[5340] {cap.surface=y,                                                                                            
        gill.size=n}                => {gill.attachment=f}          0.1344165  1.0000000 0.1344165 1.0265353  1092
[5341] {cap.surface=y,                                                                                            
        gill.size=n}                => {veil.color=w}               0.1334318  0.9926740 0.1344165 1.0177289  1084
[5342] {cap.shape=x,                                                                                              
        gill.size=n}                => {class=p}                    0.1112752  0.8828125 0.1260463 1.8314527   904
[5343] {class=p,                                                                                                  
        cap.shape=x}                => {gill.size=n}                0.1112752  0.5292740 0.2102413 1.7117126   904
[5344] {cap.shape=x,                                                                                              
        gill.size=n}                => {population=v}               0.1029050  0.8164062 0.1260463 1.6417041   836
[5345] {cap.shape=x,                                                                                              
        gill.size=n}                => {bruises=f}                  0.1043821  0.8281250 0.1260463 1.4169519   848
[5346] {cap.shape=x,                                                                                              
        gill.size=n}                => {gill.spacing=c}             0.1063516  0.8437500 0.1260463 1.0062573   864
[5347] {cap.shape=x,                                                                                              
        gill.size=n}                => {ring.number=o}              0.1260463  1.0000000 0.1260463 1.0849359  1024
[5348] {cap.shape=x,                                                                                              
        gill.size=n}                => {gill.attachment=f}          0.1260463  1.0000000 0.1260463 1.0265353  1024
[5349] {cap.shape=x,                                                                                              
        gill.size=n}                => {veil.color=w}               0.1260463  1.0000000 0.1260463 1.0252398  1024
[5350] {class=p,                                                                                                  
        gill.size=n}                => {population=v}               0.2442147  0.8920863 0.2737568 1.7938885  1984
[5351] {gill.size=n,                                                                                              
        population=v}               => {class=p}                    0.2442147  0.9018182 0.2708026 1.8708812  1984
[5352] {class=p,                                                                                                  
        population=v}               => {gill.size=n}                0.2442147  0.6966292 0.3505662 2.2529521  1984
[5353] {class=p,                                                                                                  
        gill.size=n}                => {stalk.color.below.ring=w}   0.1624815  0.5935252 0.2737568 1.0998628  1320
[5354] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {class=p}                    0.1624815  0.8461538 0.1920236 1.7554019  1320
[5355] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {gill.size=n}                0.1624815  0.7857143 0.2067947 2.5410601  1320
[5356] {class=p,                                                                                                  
        gill.size=n}                => {stalk.color.above.ring=w}   0.1664205  0.6079137 0.2737568 1.1063375  1352
[5357] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {class=p}                    0.1664205  0.8243902 0.2018710 1.7102519  1352
[5358] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {gill.size=n}                0.1664205  0.7897196 0.2107336 2.5540136  1352
[5359] {class=p,                                                                                                  
        gill.size=n}                => {stalk.shape=t}              0.2127031  0.7769784 0.2737568 1.3698291  1728
[5360] {gill.size=n,                                                                                              
        stalk.shape=t}              => {class=p}                    0.2127031  0.9473684 0.2245199 1.9653782  1728
[5361] {class=p,                                                                                                  
        stalk.shape=t}              => {gill.size=n}                0.2127031  0.8571429 0.2481536 2.7720655  1728
[5362] {class=p,                                                                                                  
        gill.size=n}                => {bruises=f}                  0.2412605  0.8812950 0.2737568 1.5079276  1960
[5363] {bruises=f,                                                                                                
        gill.size=n}                => {class=p}                    0.2412605  0.9107807 0.2648941 1.8894745  1960
[5364] {class=p,                                                                                                  
        bruises=f}                  => {gill.size=n}                0.2412605  0.5953827 0.4052191 1.9255133  1960
[5365] {class=p,                                                                                                  
        gill.size=n}                => {stalk.surface.below.ring=s} 0.1624815  0.5935252 0.2737568 0.9768636  1320
[5366] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {class=p}                    0.1624815  0.8593750 0.1890694 1.7828301  1320
[5367] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {gill.size=n}                0.1624815  0.8593750 0.1890694 2.7792844  1320
[5368] {class=p,                                                                                                  
        gill.size=n}                => {stalk.surface.above.ring=s} 0.1624815  0.5935252 0.2737568 0.9315685  1320
[5369] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {class=p}                    0.1624815  0.8333333 0.1949778 1.7288049  1320
[5370] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {gill.size=n}                0.1624815  0.8593750 0.1890694 2.7792844  1320
[5371] {class=p,                                                                                                  
        gill.size=n}                => {gill.spacing=c}             0.2599705  0.9496403 0.2737568 1.1325422  2112
[5372] {gill.spacing=c,                                                                                           
        gill.size=n}                => {class=p}                    0.2599705  0.9361702 0.2776957 1.9421468  2112
[5373] {class=p,                                                                                                  
        gill.spacing=c}             => {gill.size=n}                0.2599705  0.5552050 0.4682422 1.7955756  2112
[5374] {class=p,                                                                                                  
        gill.size=n}                => {ring.number=o}              0.2737568  1.0000000 0.2737568 1.0849359  2224
[5375] {gill.size=n,                                                                                              
        ring.number=o}              => {class=p}                    0.2737568  0.8853503 0.3092073 1.8367176  2224
[5376] {class=p,                                                                                                  
        ring.number=o}              => {gill.size=n}                0.2737568  0.5840336 0.4687346 1.8888093  2224
[5377] {class=p,                                                                                                  
        gill.size=n}                => {gill.attachment=f}          0.2737568  1.0000000 0.2737568 1.0265353  2224
[5378] {gill.attachment=f,                                                                                        
        gill.size=n}                => {class=p}                    0.2737568  0.8853503 0.3092073 1.8367176  2224
[5379] {class=p,                                                                                                  
        gill.attachment=f}          => {gill.size=n}                0.2737568  0.5705490 0.4798129 1.8451991  2224
[5380] {class=p,                                                                                                  
        gill.size=n}                => {veil.color=w}               0.2727720  0.9964029 0.2737568 1.0215519  2216
[5381] {gill.size=n,                                                                                              
        veil.color=w}               => {class=p}                    0.2727720  0.8849840 0.3082226 1.8359577  2216
[5382] {class=p,                                                                                                  
        veil.color=w}               => {gill.size=n}                0.2727720  0.5670420 0.4810438 1.8338571  2216
[5383] {gill.size=n,                                                                                              
        population=v}               => {stalk.color.below.ring=w}   0.1546036  0.5709091 0.2708026 1.0579529  1256
[5384] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {population=v}               0.1546036  0.8051282 0.1920236 1.6190251  1256
[5385] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {gill.size=n}                0.1546036  0.7072072 0.2186115 2.2871622  1256
[5386] {gill.size=n,                                                                                              
        population=v}               => {stalk.color.above.ring=w}   0.1644510  0.6072727 0.2708026 1.1051711  1336
[5387] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {population=v}               0.1644510  0.8146341 0.2018710 1.6381405  1336
[5388] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {gill.size=n}                0.1644510  0.7198276 0.2284589 2.3279774  1336
[5389] {gill.size=n,                                                                                              
        population=v}               => {stalk.shape=t}              0.2245199  0.8290909 0.2708026 1.4617045  1824
[5390] {gill.size=n,                                                                                              
        stalk.shape=t}              => {population=v}               0.2245199  1.0000000 0.2245199 2.0108911  1824
[5391] {stalk.shape=t,                                                                                            
        population=v}               => {gill.size=n}                0.2245199  0.6440678 0.3485968 2.0829645  1824
[5392] {gill.size=n,                                                                                              
        population=v}               => {bruises=f}                  0.2432299  0.8981818 0.2708026 1.5368216  1976
[5393] {bruises=f,                                                                                                
        gill.size=n}                => {population=v}               0.2432299  0.9182156 0.2648941 1.8464316  1976
[5394] {bruises=f,                                                                                                
        population=v}               => {gill.size=n}                0.2432299  0.7264706 0.3348104 2.3494614  1976
[5395] {gill.size=n,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1546036  0.5709091 0.2708026 0.9396405  1256
[5396] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {population=v}               0.1546036  0.8177083 0.1890694 1.6443224  1256
[5397] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {gill.size=n}                0.1546036  0.5286195 0.2924668 1.7095960  1256
[5398] {gill.size=n,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1575579  0.5818182 0.2708026 0.9131938  1280
[5399] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {population=v}               0.1575579  0.8080808 0.1949778 1.6249625  1280
[5400] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {gill.size=n}                0.1575579  0.5333333 0.2954210 1.7248408  1280
[5401] {gill.size=n,                                                                                              
        population=v}               => {gill.spacing=c}             0.2471689  0.9127273 0.2708026 1.0885197  2008
[5402] {gill.spacing=c,                                                                                           
        gill.size=n}                => {population=v}               0.2471689  0.8900709 0.2776957 1.7898357  2008
[5403] {gill.spacing=c,                                                                                           
        population=v}               => {gill.size=n}                0.2471689  0.5218295 0.4736583 1.6876366  2008
[5404] {gill.size=n,                                                                                              
        population=v}               => {ring.number=o}              0.2708026  1.0000000 0.2708026 1.0849359  2200
[5405] {gill.size=n,                                                                                              
        ring.number=o}              => {population=v}               0.2708026  0.8757962 0.3092073 1.7611307  2200
[5406] {ring.number=o,                                                                                            
        population=v}               => {gill.size=n}                0.2708026  0.5566802 0.4864599 1.8003462  2200
[5407] {gill.size=n,                                                                                              
        population=v}               => {gill.attachment=f}          0.2708026  1.0000000 0.2708026 1.0265353  2200
[5408] {gill.attachment=f,                                                                                        
        gill.size=n}                => {population=v}               0.2708026  0.8757962 0.3092073 1.7611307  2200
[5409] {gill.attachment=f,                                                                                        
        population=v}               => {gill.size=n}                0.2708026  0.5578093 0.4854751 1.8039980  2200
[5410] {gill.size=n,                                                                                              
        population=v}               => {veil.color=w}               0.2708026  1.0000000 0.2708026 1.0252398  2200
[5411] {gill.size=n,                                                                                              
        veil.color=w}               => {population=v}               0.2708026  0.8785942 0.3082226 1.7667573  2200
[5412] {veil.color=w,                                                                                             
        population=v}               => {gill.size=n}                0.2708026  0.5578093 0.4854751 1.8039980  2200
[5413] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1388479  0.7230769 0.1920236 1.3159222  1128
[5414] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1388479  0.6878049 0.2018710 1.2745727  1128
[5415] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1181684  0.6153846 0.1920236 1.0849359   960
[5416] {gill.size=n,                                                                                              
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1181684  0.5263158 0.2245199 0.9753169   960
[5417] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {bruises=f}                  0.1477105  0.7692308 0.1920236 1.3161817  1200
[5418] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.color.below.ring=w}   0.1477105  0.5576208 0.2648941 1.0333284  1200
[5419] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {gill.size=n}                0.1477105  0.5319149 0.2776957 1.7202534  1200
[5420] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1329394  0.6923077 0.1920236 1.1394465  1080
[5421] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1329394  0.7031250 0.1890694 1.3029625  1080
[5422] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1388479  0.7230769 0.1920236 1.1349067  1128
[5423] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1388479  0.7121212 0.1949778 1.3196334  1128
[5424] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1674052  0.8717949 0.1920236 1.0397037  1360
[5425] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.color.below.ring=w}   0.1674052  0.6028369 0.2776957 1.1171183  1360
[5426] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.1920236  1.0000000 0.1920236 1.0849359  1560
[5427] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.color.below.ring=w}   0.1920236  0.6210191 0.3092073 1.1508119  1560
[5428] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1920236  1.0000000 0.1920236 1.0265353  1560
[5429] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.color.below.ring=w}   0.1920236  0.6210191 0.3092073 1.1508119  1560
[5430] {gill.size=n,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.1920236  1.0000000 0.1920236 1.0252398  1560
[5431] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.color.below.ring=w}   0.1920236  0.6230032 0.3082226 1.1544886  1560
[5432] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1181684  0.5853659 0.2018710 1.0320122   960
[5433] {gill.size=n,                                                                                              
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1181684  0.5263158 0.2245199 0.9578381   960
[5434] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {bruises=f}                  0.1575579  0.7804878 0.2018710 1.3354429  1280
[5435] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.color.above.ring=w}   0.1575579  0.5947955 0.2648941 1.0824639  1280
[5436] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {gill.size=n}                0.1575579  0.5479452 0.2875431 1.7720967  1280
[5437] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1358936  0.6731707 0.2018710 1.1079496  1104
[5438] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1358936  0.7187500 0.1890694 1.3080477  1104
[5439] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1418021  0.7024390 0.2018710 1.1025144  1152
[5440] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1418021  0.7272727 0.1949778 1.3235582  1152
[5441] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1713442  0.8487805 0.2018710 1.0122567  1392
[5442] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.color.above.ring=w}   0.1713442  0.6170213 0.2776957 1.1229124  1392
[5443] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.2018710  1.0000000 0.2018710 1.0849359  1640
[5444] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.color.above.ring=w}   0.2018710  0.6528662 0.3092073 1.1881464  1640
[5445] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2018710  1.0000000 0.2018710 1.0265353  1640
[5446] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.color.above.ring=w}   0.2018710  0.6528662 0.3092073 1.1881464  1640
[5447] {gill.size=n,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.2018710  1.0000000 0.2018710 1.0252398  1640
[5448] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.color.above.ring=w}   0.2018710  0.6549521 0.3082226 1.1919424  1640
[5449] {gill.size=n,                                                                                              
        stalk.shape=t}              => {bruises=f}                  0.2127031  0.9473684 0.2245199 1.6209817  1728
[5450] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.shape=t}              0.2127031  0.8029740 0.2648941 1.4156599  1728
[5451] {bruises=f,                                                                                                
        stalk.shape=t}              => {gill.size=n}                0.2127031  0.6923077 0.3072378 2.2389760  1728
[5452] {gill.size=n,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1181684  0.5263158 0.2245199 0.8662458   960
[5453] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1181684  0.6250000 0.1890694 1.1018880   960
[5454] {gill.size=n,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1181684  0.5263158 0.2245199 0.8260799   960
[5455] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1181684  0.6060606 0.1949778 1.0684975   960
[5456] {gill.size=n,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  0.9473684 0.2245199 1.1298328  1728
[5457] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.shape=t}              0.2127031  0.7659574 0.2776957 1.3503989  1728
[5458] {gill.size=n,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.2245199  1.0000000 0.2245199 1.0849359  1824
[5459] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.2245199  0.7261146 0.3092073 1.2801553  1824
[5460] {gill.size=n,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[5461] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.shape=t}              0.2245199  0.7261146 0.3092073 1.2801553  1824
[5462] {gill.size=n,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.2245199  1.0000000 0.2245199 1.0252398  1824
[5463] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.2245199  0.7284345 0.3082226 1.2842452  1824
[5464] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.surface.below.ring=s} 0.1447563  0.5464684 0.2648941 0.8994144  1176
[5465] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {bruises=f}                  0.1447563  0.7656250 0.1890694 1.3100121  1176
[5466] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {gill.size=n}                0.1447563  0.6202532 0.2333826 2.0059461  1176
[5467] {bruises=f,                                                                                                
        gill.size=n}                => {stalk.surface.above.ring=s} 0.1506647  0.5687732 0.2648941 0.8927190  1224
[5468] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {bruises=f}                  0.1506647  0.7727273 0.1949778 1.3221644  1224
[5469] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {gill.size=n}                0.1506647  0.6296296 0.2392910 2.0362703  1224
[5470] {bruises=f,                                                                                                
        gill.size=n}                => {gill.spacing=c}             0.2461841  0.9293680 0.2648941 1.1083655  2000
[5471] {gill.spacing=c,                                                                                           
        gill.size=n}                => {bruises=f}                  0.2461841  0.8865248 0.2776957 1.5168761  2000
[5472] {bruises=f,                                                                                                
        gill.spacing=c}             => {gill.size=n}                0.2461841  0.5649718 0.4357459 1.8271618  2000
[5473] {bruises=f,                                                                                                
        gill.size=n}                => {ring.number=o}              0.2648941  1.0000000 0.2648941 1.0849359  2152
[5474] {gill.size=n,                                                                                              
        ring.number=o}              => {bruises=f}                  0.2648941  0.8566879 0.3092073 1.4658240  2152
[5475] {bruises=f,                                                                                                
        gill.size=n}                => {gill.attachment=f}          0.2648941  1.0000000 0.2648941 1.0265353  2152
[5476] {gill.attachment=f,                                                                                        
        gill.size=n}                => {bruises=f}                  0.2648941  0.8566879 0.3092073 1.4658240  2152
[5477] {bruises=f,                                                                                                
        gill.size=n}                => {veil.color=w}               0.2639094  0.9962825 0.2648941 1.0214285  2144
[5478] {gill.size=n,                                                                                              
        veil.color=w}               => {bruises=f}                  0.2639094  0.8562300 0.3082226 1.4650406  2144
[5479] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1344165  0.7109375 0.1890694 1.1158532  1092
[5480] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1344165  0.6893939 0.1949778 1.1346508  1092
[5481] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1614968  0.8541667 0.1890694 1.0186803  1312
[5482] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.surface.below.ring=s} 0.1614968  0.5815603 0.2776957 0.9571709  1312
[5483] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.1890694  1.0000000 0.1890694 1.0849359  1536
[5484] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1890694  0.6114650 0.3092073 1.0063901  1536
[5485] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1890694  1.0000000 0.1890694 1.0265353  1536
[5486] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.surface.below.ring=s} 0.1890694  0.6114650 0.3092073 1.0063901  1536
[5487] {gill.size=n,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.1890694  1.0000000 0.1890694 1.0252398  1536
[5488] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1890694  0.6134185 0.3082226 1.0096054  1536
[5489] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1674052  0.8585859 0.1949778 1.0239506  1360
[5490] {gill.spacing=c,                                                                                           
        gill.size=n}                => {stalk.surface.above.ring=s} 0.1674052  0.6028369 0.2776957 0.9461837  1360
[5491] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[5492] {gill.size=n,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1949778  0.6305732 0.3092073 0.9897174  1584
[5493] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[5494] {gill.attachment=f,                                                                                        
        gill.size=n}                => {stalk.surface.above.ring=s} 0.1949778  0.6305732 0.3092073 0.9897174  1584
[5495] {gill.size=n,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[5496] {gill.size=n,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1949778  0.6325879 0.3082226 0.9928794  1584
[5497] {gill.spacing=c,                                                                                           
        gill.size=n}                => {ring.number=o}              0.2776957  1.0000000 0.2776957 1.0849359  2256
[5498] {gill.size=n,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.2776957  0.8980892 0.3092073 1.0710623  2256
[5499] {gill.spacing=c,                                                                                           
        gill.size=n}                => {gill.attachment=f}          0.2776957  1.0000000 0.2776957 1.0265353  2256
[5500] {gill.attachment=f,                                                                                        
        gill.size=n}                => {gill.spacing=c}             0.2776957  0.8980892 0.3092073 1.0710623  2256
[5501] {gill.spacing=c,                                                                                           
        gill.size=n}                => {veil.color=w}               0.2776957  1.0000000 0.2776957 1.0252398  2256
[5502] {gill.size=n,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.2776957  0.9009585 0.3082226 1.0744842  2256
[5503] {gill.size=n,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.3092073  1.0000000 0.3092073 1.0265353  2512
[5504] {gill.attachment=f,                                                                                        
        gill.size=n}                => {ring.number=o}              0.3092073  1.0000000 0.3092073 1.0849359  2512
[5505] {gill.size=n,                                                                                              
        ring.number=o}              => {veil.color=w}               0.3082226  0.9968153 0.3092073 1.0219747  2504
[5506] {gill.size=n,                                                                                              
        veil.color=w}               => {ring.number=o}              0.3082226  1.0000000 0.3082226 1.0849359  2504
[5507] {gill.attachment=f,                                                                                        
        gill.size=n}                => {veil.color=w}               0.3082226  0.9968153 0.3092073 1.0219747  2504
[5508] {gill.size=n,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.3082226  1.0000000 0.3082226 1.0265353  2504
[5509] {cap.surface=s,                                                                                            
        ring.type=e}                => {class=p}                    0.1063516  0.6428571 0.1654357 1.3336495   864
[5510] {class=p,                                                                                                  
        cap.surface=s}              => {ring.type=e}                0.1063516  0.6118980 0.1738060 1.7907275   864
[5511] {cap.surface=s,                                                                                            
        ring.type=e}                => {population=v}               0.1063516  0.6428571 0.1654357 1.2927157   864
[5512] {cap.surface=s,                                                                                            
        population=v}               => {ring.type=e}                0.1063516  0.6605505 0.1610044 1.9331095   864
[5513] {cap.surface=s,                                                                                            
        ring.type=e}                => {stalk.color.below.ring=w}   0.1063516  0.6428571 0.1654357 1.1912800   864
[5514] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {cap.surface=s}              0.1063516  0.5000000 0.2127031 1.5892019   864
[5515] {cap.surface=s,                                                                                            
        ring.type=e}                => {stalk.color.above.ring=w}   0.1063516  0.6428571 0.1654357 1.1699309   864
[5516] {cap.surface=s,                                                                                            
        ring.type=e}                => {stalk.shape=t}              0.1536189  0.9285714 0.1654357 1.6370908  1248
[5517] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {ring.type=e}                0.1536189  0.7878788 0.1949778 2.3057375  1248
[5518] {stalk.shape=t,                                                                                            
        ring.type=e}                => {cap.surface=s}              0.1536189  0.5000000 0.3072378 1.5892019  1248
[5519] {cap.surface=s,                                                                                            
        ring.type=e}                => {bruises=f}                  0.1536189  0.9285714 0.1654357 1.5888194  1248
[5520] {cap.surface=s,                                                                                            
        bruises=f}                  => {ring.type=e}                0.1536189  0.7393365 0.2077794 2.1636778  1248
[5521] {cap.surface=s,                                                                                            
        ring.type=e}                => {gill.spacing=c}             0.1181684  0.7142857 0.1654357 0.8518581   960
[5522] {cap.surface=s,                                                                                            
        ring.type=e}                => {ring.number=o}              0.1536189  0.9285714 0.1654357 1.0074405  1248
[5523] {cap.surface=s,                                                                                            
        ring.number=o}              => {ring.type=e}                0.1536189  0.5531915 0.2776957 1.6189221  1248
[5524] {cap.surface=s,                                                                                            
        ring.type=e}                => {gill.attachment=f}          0.1654357  1.0000000 0.1654357 1.0265353  1344
[5525] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {ring.type=e}                0.1654357  0.5685279 0.2909897 1.6638043  1344
[5526] {cap.surface=s,                                                                                            
        ring.type=e}                => {veil.color=w}               0.1654357  1.0000000 0.1654357 1.0252398  1344
[5527] {cap.surface=s,                                                                                            
        veil.color=w}               => {ring.type=e}                0.1654357  0.5685279 0.2909897 1.6638043  1344
[5528] {cap.surface=s,                                                                                            
        bruises=t}                  => {stalk.color.below.ring=w}   0.1009355  0.9447005 0.1068439 1.7506265   820
[5529] {cap.surface=s,                                                                                            
        bruises=t}                  => {stalk.color.above.ring=w}   0.1009355  0.9447005 0.1068439 1.7192533   820
[5530] {cap.surface=s,                                                                                            
        bruises=t}                  => {gill.spacing=c}             0.1009355  0.9447005 0.1068439 1.1266510   820
[5531] {cap.surface=s,                                                                                            
        bruises=t}                  => {gill.attachment=f}          0.1068439  1.0000000 0.1068439 1.0265353   868
[5532] {cap.surface=s,                                                                                            
        bruises=t}                  => {veil.color=w}               0.1068439  1.0000000 0.1068439 1.0252398   868
[5533] {cap.surface=s,                                                                                            
        stalk.shape=e}              => {ring.type=p}                0.1078287  0.9012346 0.1196455 1.8451688   876
[5534] {cap.surface=s,                                                                                            
        ring.type=p}                => {stalk.shape=e}              0.1078287  0.7227723 0.1491876 1.6700233   876
[5535] {cap.surface=s,                                                                                            
        stalk.shape=e}              => {stalk.surface.below.ring=s} 0.1097981  0.9176955 0.1196455 1.5104048   892
[5536] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {stalk.shape=e}              0.1097981  0.5222482 0.2102413 1.2066965   892
[5537] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {cap.surface=s}              0.1097981  0.5186047 0.2117184 1.6483350   892
[5538] {cap.surface=s,                                                                                            
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.1097981  0.9176955 0.1196455 1.4403706   892
[5539] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {stalk.shape=e}              0.1097981  0.5222482 0.2102413 1.2066965   892
[5540] {cap.surface=s,                                                                                            
        odor=n}                     => {class=e}                    0.1033973  0.9589041 0.1078287 1.8512683   840
[5541] {class=e,                                                                                                  
        cap.surface=s}              => {odor=n}                     0.1033973  0.7342657 0.1408173 1.6908092   840
[5542] {cap.surface=s,                                                                                            
        odor=n}                     => {gill.size=b}                0.1078287  1.0000000 0.1078287 1.4476123   876
[5543] {cap.surface=s,                                                                                            
        gill.size=b}                => {odor=n}                     0.1078287  0.6169014 0.1747907 1.4205519   876
[5544] {cap.shape=x,                                                                                              
        cap.surface=s}              => {stalk.color.below.ring=w}   0.1063516  0.8044693 0.1322009 1.4907638   864
[5545] {cap.shape=x,                                                                                              
        cap.surface=s}              => {stalk.color.above.ring=w}   0.1063516  0.8044693 0.1322009 1.4640476   864
[5546] {cap.shape=x,                                                                                              
        cap.surface=s}              => {ring.number=o}              0.1211226  0.9162011 0.1322009 0.9940195   984
[5547] {cap.shape=x,                                                                                              
        cap.surface=s}              => {gill.attachment=f}          0.1262925  0.9553073 0.1322009 0.9806566  1026
[5548] {cap.shape=x,                                                                                              
        cap.surface=s}              => {veil.color=w}               0.1262925  0.9553073 0.1322009 0.9794190  1026
[5549] {class=p,                                                                                                  
        cap.surface=s}              => {population=v}               0.1422944  0.8186969 0.1738060 1.6463103  1156
[5550] {cap.surface=s,                                                                                            
        population=v}               => {class=p}                    0.1422944  0.8837920 0.1610044 1.8334848  1156
[5551] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.color.below.ring=w}   0.1206302  0.6940510 0.1738060 1.2861474   980
[5552] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {class=p}                    0.1206302  0.5223881 0.2309207 1.0837284   980
[5553] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {cap.surface=s}              0.1206302  0.5833333 0.2067947 1.8540689   980
[5554] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.color.above.ring=w}   0.1206302  0.6940510 0.1738060 1.2630982   980
[5555] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {class=p}                    0.1206302  0.5223881 0.2309207 1.0837284   980
[5556] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {cap.surface=s}              0.1206302  0.5724299 0.2107336 1.8194134   980
[5557] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.shape=t}              0.1418021  0.8158640 0.1738060 1.4383853  1152
[5558] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {class=p}                    0.1418021  0.7272727 0.1949778 1.5087752  1152
[5559] {class=p,                                                                                                  
        stalk.shape=t}              => {cap.surface=s}              0.1418021  0.5714286 0.2481536 1.8162307  1152
[5560] {class=p,                                                                                                  
        cap.surface=s}              => {bruises=f}                  0.1181684  0.6798867 0.1738060 1.1633107   960
[5561] {cap.surface=s,                                                                                            
        bruises=f}                  => {class=p}                    0.1181684  0.5687204 0.2077794 1.1798479   960
[5562] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.surface.below.ring=s} 0.1029050  0.5920680 0.1738060 0.9744652   836
[5563] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {cap.surface=s}              0.1029050  0.5442708 0.1890694 1.7299125   836
[5564] {class=p,                                                                                                  
        cap.surface=s}              => {stalk.surface.above.ring=s} 0.1029050  0.5920680 0.1738060 0.9292814   836
[5565] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {cap.surface=s}              0.1029050  0.5442708 0.1890694 1.7299125   836
[5566] {class=p,                                                                                                  
        cap.surface=s}              => {gill.spacing=c}             0.1678976  0.9660057 0.1738060 1.1520596  1364
[5567] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {class=p}                    0.1678976  0.7060041 0.2378139 1.4646521  1364
[5568] {class=p,                                                                                                  
        cap.surface=s}              => {ring.number=o}              0.1693747  0.9745042 0.1738060 1.0572746  1376
[5569] {cap.surface=s,                                                                                            
        ring.number=o}              => {class=p}                    0.1693747  0.6099291 0.2776957 1.2653381  1376
[5570] {class=p,                                                                                                  
        cap.surface=s}              => {gill.attachment=f}          0.1738060  1.0000000 0.1738060 1.0265353  1412
[5571] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {class=p}                    0.1738060  0.5972927 0.2909897 1.2391231  1412
[5572] {class=p,                                                                                                  
        cap.surface=s}              => {veil.color=w}               0.1738060  1.0000000 0.1738060 1.0252398  1412
[5573] {cap.surface=s,                                                                                            
        veil.color=w}               => {class=p}                    0.1738060  0.5972927 0.2909897 1.2391231  1412
[5574] {cap.surface=s,                                                                                            
        ring.type=p}                => {stalk.color.below.ring=w}   0.1245692  0.8349835 0.1491876 1.5473097  1012
[5575] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {ring.type=p}                0.1245692  0.5394456 0.2309207 1.1044497  1012
[5576] {cap.surface=s,                                                                                            
        ring.type=p}                => {stalk.color.above.ring=w}   0.1245692  0.8349835 0.1491876 1.5195802  1012
[5577] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {ring.type=p}                0.1245692  0.5394456 0.2309207 1.1044497  1012
[5578] {cap.surface=s,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1216150  0.8151815 0.1491876 1.3416804   988
[5579] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {ring.type=p}                0.1216150  0.5784543 0.2102413 1.1843153   988
[5580] {cap.surface=s,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1216150  0.8151815 0.1491876 1.2794696   988
[5581] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {ring.type=p}                0.1216150  0.5784543 0.2102413 1.1843153   988
[5582] {cap.surface=s,                                                                                            
        ring.type=p}                => {gill.size=b}                0.1157065  0.7755776 0.1491876 1.1227356   940
[5583] {cap.surface=s,                                                                                            
        gill.size=b}                => {ring.type=p}                0.1157065  0.6619718 0.1747907 1.3553072   940
[5584] {cap.surface=s,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.1196455  0.8019802 0.1491876 0.9564426   972
[5585] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {ring.type=p}                0.1196455  0.5031056 0.2378139 1.0300478   972
[5586] {cap.surface=s,                                                                                            
        ring.type=p}                => {ring.number=o}              0.1240768  0.8316832 0.1491876 0.9023229  1008
[5587] {cap.surface=s,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.1255539  0.8415842 0.1491876 0.8639158  1020
[5588] {cap.surface=s,                                                                                            
        ring.type=p}                => {veil.color=w}               0.1255539  0.8415842 0.1491876 0.8628256  1020
[5589] {cap.surface=s,                                                                                            
        population=v}               => {stalk.shape=t}              0.1299852  0.8073394 0.1610044 1.4233563  1056
[5590] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {population=v}               0.1299852  0.6666667 0.1949778 1.3405941  1056
[5591] {cap.surface=s,                                                                                            
        population=v}               => {bruises=f}                  0.1240768  0.7706422 0.1610044 1.3185967  1008
[5592] {cap.surface=s,                                                                                            
        bruises=f}                  => {population=v}               0.1240768  0.5971564 0.2077794 1.2008165  1008
[5593] {cap.surface=s,                                                                                            
        population=v}               => {gill.spacing=c}             0.1521418  0.9449541 0.1610044 1.1269535  1236
[5594] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {population=v}               0.1521418  0.6397516 0.2378139 1.2864707  1236
[5595] {cap.surface=s,                                                                                            
        population=v}               => {ring.number=o}              0.1555884  0.9663609 0.1610044 1.0484396  1264
[5596] {cap.surface=s,                                                                                            
        ring.number=o}              => {population=v}               0.1555884  0.5602837 0.2776957 1.1266695  1264
[5597] {cap.surface=s,                                                                                            
        population=v}               => {gill.attachment=f}          0.1491876  0.9266055 0.1610044 0.9511932  1212
[5598] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {population=v}               0.1491876  0.5126904 0.2909897 1.0309645  1212
[5599] {cap.surface=s,                                                                                            
        population=v}               => {veil.color=w}               0.1491876  0.9266055 0.1610044 0.9499928  1212
[5600] {cap.surface=s,                                                                                            
        veil.color=w}               => {population=v}               0.1491876  0.5126904 0.2909897 1.0309645  1212
[5601] {class=e,                                                                                                  
        cap.surface=s}              => {stalk.color.below.ring=w}   0.1102905  0.7832168 0.1408173 1.4513807   896
[5602] {class=e,                                                                                                  
        cap.surface=s}              => {stalk.color.above.ring=w}   0.1102905  0.7832168 0.1408173 1.4253703   896
[5603] {class=e,                                                                                                  
        cap.surface=s}              => {stalk.surface.below.ring=s} 0.1073363  0.7622378 0.1408173 1.2545421   872
[5604] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {class=e}                    0.1073363  0.5105386 0.2102413 0.9856502   872
[5605] {class=e,                                                                                                  
        cap.surface=s}              => {stalk.surface.above.ring=s} 0.1073363  0.7622378 0.1408173 1.1963716   872
[5606] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {class=e}                    0.1073363  0.5105386 0.2102413 0.9856502   872
[5607] {class=e,                                                                                                  
        cap.surface=s}              => {gill.size=b}                0.1349089  0.9580420 0.1408173 1.3868733  1096
[5608] {cap.surface=s,                                                                                            
        gill.size=b}                => {class=e}                    0.1349089  0.7718310 0.1747907 1.4901034  1096
[5609] {class=e,                                                                                                  
        cap.surface=s}              => {ring.number=o}              0.1083210  0.7692308 0.1408173 0.8345661   880
[5610] {class=e,                                                                                                  
        cap.surface=s}              => {gill.attachment=f}          0.1171837  0.8321678 0.1408173 0.8542496   952
[5611] {class=e,                                                                                                  
        cap.surface=s}              => {veil.color=w}               0.1171837  0.8321678 0.1408173 0.8531716   952
[5612] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2013786  0.8720682 0.2309207 1.5870704  1636
[5613] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2013786  0.8720682 0.2309207 1.6160315  1636
[5614] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1418021  0.6140725 0.2309207 1.0826226  1152
[5615] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1418021  0.7272727 0.1949778 1.3477107  1152
[5616] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {bruises=f}                  0.1299852  0.5628998 0.2309207 0.9631419  1056
[5617] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.color.below.ring=w}   0.1299852  0.6255924 0.2077794 1.1592867  1056
[5618] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1541113  0.6673774 0.2309207 1.0984145  1252
[5619] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1541113  0.7330211 0.2102413 1.3583630  1252
[5620] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1541113  0.6673774 0.2309207 1.0474834  1252
[5621] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1541113  0.7330211 0.2102413 1.3583630  1252
[5622] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {gill.size=b}                0.1442639  0.6247335 0.2309207 0.9043718  1172
[5623] {cap.surface=s,                                                                                            
        gill.size=b}                => {stalk.color.below.ring=w}   0.1442639  0.8253521 0.1747907 1.5294618  1172
[5624] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1541113  0.6673774 0.2309207 0.7959151  1252
[5625] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.color.below.ring=w}   0.1541113  0.6480331 0.2378139 1.2008716  1252
[5626] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {ring.number=o}              0.2008863  0.8699360 0.2309207 0.9438248  1632
[5627] {cap.surface=s,                                                                                            
        ring.number=o}              => {stalk.color.below.ring=w}   0.2008863  0.7234043 0.2776957 1.3405420  1632
[5628] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2309207  1.0000000 0.2309207 1.0265353  1876
[5629] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.2309207  0.7935702 0.2909897 1.4705667  1876
[5630] {cap.surface=s,                                                                                            
        stalk.color.below.ring=w}   => {veil.color=w}               0.2309207  1.0000000 0.2309207 1.0252398  1876
[5631] {cap.surface=s,                                                                                            
        veil.color=w}               => {stalk.color.below.ring=w}   0.2309207  0.7935702 0.2909897 1.4705667  1876
[5632] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1418021  0.6140725 0.2309207 1.0826226  1152
[5633] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1418021  0.7272727 0.1949778 1.3235582  1152
[5634] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {bruises=f}                  0.1299852  0.5628998 0.2309207 0.9631419  1056
[5635] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.color.above.ring=w}   0.1299852  0.6255924 0.2077794 1.1385109  1056
[5636] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1541113  0.6673774 0.2309207 1.0984145  1252
[5637] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1541113  0.7330211 0.2102413 1.3340195  1252
[5638] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1541113  0.6673774 0.2309207 1.0474834  1252
[5639] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1541113  0.7330211 0.2102413 1.3340195  1252
[5640] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {gill.size=b}                0.1442639  0.6247335 0.2309207 0.9043718  1172
[5641] {cap.surface=s,                                                                                            
        gill.size=b}                => {stalk.color.above.ring=w}   0.1442639  0.8253521 0.1747907 1.5020521  1172
[5642] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1541113  0.6673774 0.2309207 0.7959151  1252
[5643] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.color.above.ring=w}   0.1541113  0.6480331 0.2378139 1.1793506  1252
[5644] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {ring.number=o}              0.2008863  0.8699360 0.2309207 0.9438248  1632
[5645] {cap.surface=s,                                                                                            
        ring.number=o}              => {stalk.color.above.ring=w}   0.2008863  0.7234043 0.2776957 1.3165180  1632
[5646] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2309207  1.0000000 0.2309207 1.0265353  1876
[5647] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.2309207  0.7935702 0.2909897 1.4442125  1876
[5648] {cap.surface=s,                                                                                            
        stalk.color.above.ring=w}   => {veil.color=w}               0.2309207  1.0000000 0.2309207 1.0252398  1876
[5649] {cap.surface=s,                                                                                            
        veil.color=w}               => {stalk.color.above.ring=w}   0.2309207  0.7935702 0.2909897 1.4442125  1876
[5650] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {bruises=f}                  0.1536189  0.7878788 0.1949778 1.3480891  1248
[5651] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.shape=t}              0.1536189  0.7393365 0.2077794 1.3034656  1248
[5652] {bruises=f,                                                                                                
        stalk.shape=t}              => {cap.surface=s}              0.1536189  0.5000000 0.3072378 1.5892019  1248
[5653] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1004431  0.5151515 0.1949778 0.8478709   816
[5654] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1004431  0.5151515 0.1949778 0.8085570   816
[5655] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {gill.spacing=c}             0.1418021  0.7272727 0.1949778 0.8673464  1152
[5656] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.shape=t}              0.1418021  0.5962733 0.2378139 1.0512422  1152
[5657] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {ring.number=o}              0.1949778  1.0000000 0.1949778 1.0849359  1584
[5658] {cap.surface=s,                                                                                            
        ring.number=o}              => {stalk.shape=t}              0.1949778  0.7021277 0.2776957 1.2378657  1584
[5659] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {gill.attachment=f}          0.1949778  1.0000000 0.1949778 1.0265353  1584
[5660] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {stalk.shape=t}              0.1949778  0.6700508 0.2909897 1.1813135  1584
[5661] {cap.surface=s,                                                                                            
        stalk.shape=t}              => {veil.color=w}               0.1949778  1.0000000 0.1949778 1.0252398  1584
[5662] {cap.surface=s,                                                                                            
        veil.color=w}               => {stalk.shape=t}              0.1949778  0.6700508 0.2909897 1.1813135  1584
[5663] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.surface.below.ring=s} 0.1211226  0.5829384 0.2077794 0.9594391   984
[5664] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {bruises=f}                  0.1211226  0.5761124 0.2102413 0.9857492   984
[5665] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {cap.surface=s}              0.1211226  0.5189873 0.2333826 1.6495513   984
[5666] {cap.surface=s,                                                                                            
        bruises=f}                  => {stalk.surface.above.ring=s} 0.1211226  0.5829384 0.2077794 0.9149520   984
[5667] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {bruises=f}                  0.1211226  0.5761124 0.2102413 0.9857492   984
[5668] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {cap.surface=s}              0.1211226  0.5061728 0.2392910 1.6088217   984
[5669] {cap.surface=s,                                                                                            
        bruises=f}                  => {gill.spacing=c}             0.1368784  0.6587678 0.2077794 0.7856473  1112
[5670] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {bruises=f}                  0.1368784  0.5755694 0.2378139 0.9848200  1112
[5671] {cap.surface=s,                                                                                            
        bruises=f}                  => {ring.number=o}              0.1890694  0.9099526 0.2077794 0.9872402  1536
[5672] {cap.surface=s,                                                                                            
        ring.number=o}              => {bruises=f}                  0.1890694  0.6808511 0.2776957 1.1649608  1536
[5673] {cap.surface=s,                                                                                            
        bruises=f}                  => {gill.attachment=f}          0.1841457  0.8862559 0.2077794 0.9097730  1496
[5674] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {bruises=f}                  0.1841457  0.6328257 0.2909897 1.0827877  1496
[5675] {cap.surface=s,                                                                                            
        bruises=f}                  => {veil.color=w}               0.1841457  0.8862559 0.2077794 0.9086248  1496
[5676] {cap.surface=s,                                                                                            
        veil.color=w}               => {bruises=f}                  0.1841457  0.6328257 0.2909897 1.0827877  1496
[5677] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1585426  0.7540984 0.2102413 1.1835964  1288
[5678] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1585426  0.7540984 0.2102413 1.2411457  1288
[5679] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {gill.size=b}                0.1235844  0.5878220 0.2102413 0.8509384  1004
[5680] {cap.surface=s,                                                                                            
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1235844  0.7070423 0.1747907 1.1636976  1004
[5681] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1659281  0.7892272 0.2102413 0.9412333  1348
[5682] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.1659281  0.6977226 0.2378139 1.1483586  1348
[5683] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {ring.number=o}              0.1831610  0.8711944 0.2102413 0.9451901  1488
[5684] {cap.surface=s,                                                                                            
        ring.number=o}              => {stalk.surface.below.ring=s} 0.1831610  0.6595745 0.2776957 1.0855719  1488
[5685] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1866076  0.8875878 0.2102413 0.9111402  1516
[5686] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.1866076  0.6412860 0.2909897 1.0554715  1516
[5687] {cap.surface=s,                                                                                            
        stalk.surface.below.ring=s} => {veil.color=w}               0.1866076  0.8875878 0.2102413 0.9099903  1516
[5688] {cap.surface=s,                                                                                            
        veil.color=w}               => {stalk.surface.below.ring=s} 0.1866076  0.6412860 0.2909897 1.0554715  1516
[5689] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {gill.size=b}                0.1235844  0.5878220 0.2102413 0.8509384  1004
[5690] {cap.surface=s,                                                                                            
        gill.size=b}                => {stalk.surface.above.ring=s} 0.1235844  0.7070423 0.1747907 1.1097394  1004
[5691] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1659281  0.7892272 0.2102413 0.9412333  1348
[5692] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.1659281  0.6977226 0.2378139 1.0951117  1348
[5693] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {ring.number=o}              0.1831610  0.8711944 0.2102413 0.9451901  1488
[5694] {cap.surface=s,                                                                                            
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1831610  0.6595745 0.2776957 1.0352363  1488
[5695] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1866076  0.8875878 0.2102413 0.9111402  1516
[5696] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.1866076  0.6412860 0.2909897 1.0065315  1516
[5697] {cap.surface=s,                                                                                            
        stalk.surface.above.ring=s} => {veil.color=w}               0.1866076  0.8875878 0.2102413 0.9099903  1516
[5698] {cap.surface=s,                                                                                            
        veil.color=w}               => {stalk.surface.above.ring=s} 0.1866076  0.6412860 0.2909897 1.0065315  1516
[5699] {cap.surface=s,                                                                                            
        gill.size=b}                => {gill.spacing=c}             0.1097981  0.6281690 0.1747907 0.7491552   892
[5700] {cap.surface=s,                                                                                            
        gill.size=b}                => {ring.number=o}              0.1378631  0.7887324 0.1747907 0.8557241  1120
[5701] {cap.surface=s,                                                                                            
        gill.size=b}                => {gill.attachment=f}          0.1511571  0.8647887 0.1747907 0.8877361  1228
[5702] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {gill.size=b}                0.1511571  0.5194585 0.2909897 0.7519746  1228
[5703] {cap.surface=s,                                                                                            
        gill.size=b}                => {veil.color=w}               0.1511571  0.8647887 0.1747907 0.8866158  1228
[5704] {cap.surface=s,                                                                                            
        veil.color=w}               => {gill.size=b}                0.1511571  0.5194585 0.2909897 0.7519746  1228
[5705] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {ring.number=o}              0.2186115  0.9192547 0.2378139 0.9973324  1776
[5706] {cap.surface=s,                                                                                            
        ring.number=o}              => {gill.spacing=c}             0.2186115  0.7872340 0.2776957 0.9388563  1776
[5707] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {gill.attachment=f}          0.2141802  0.9006211 0.2378139 0.9245193  1740
[5708] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {gill.spacing=c}             0.2141802  0.7360406 0.2909897 0.8778030  1740
[5709] {cap.surface=s,                                                                                            
        gill.spacing=c}             => {veil.color=w}               0.2141802  0.9006211 0.2378139 0.9233526  1740
[5710] {cap.surface=s,                                                                                            
        veil.color=w}               => {gill.spacing=c}             0.2141802  0.7360406 0.2909897 0.8778030  1740
[5711] {cap.surface=s,                                                                                            
        ring.number=o}              => {gill.attachment=f}          0.2540620  0.9148936 0.2776957 0.9391706  2064
[5712] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {ring.number=o}              0.2540620  0.8730964 0.2909897 0.9472537  2064
[5713] {cap.surface=s,                                                                                            
        ring.number=o}              => {veil.color=w}               0.2540620  0.9148936 0.2776957 0.9379853  2064
[5714] {cap.surface=s,                                                                                            
        veil.color=w}               => {ring.number=o}              0.2540620  0.8730964 0.2909897 0.9472537  2064
[5715] {cap.surface=s,                                                                                            
        gill.attachment=f}          => {veil.color=w}               0.2909897  1.0000000 0.2909897 1.0252398  2364
[5716] {cap.surface=s,                                                                                            
        veil.color=w}               => {gill.attachment=f}          0.2909897  1.0000000 0.2909897 1.0265353  2364
[5717] {cap.shape=f,                                                                                              
        ring.type=e}                => {stalk.shape=t}              0.1181684  0.9142857 0.1292467 1.6119048   960
[5718] {cap.shape=f,                                                                                              
        ring.type=e}                => {bruises=f}                  0.1213688  0.9390476 0.1292467 1.6067445   986
[5719] {cap.shape=f,                                                                                              
        bruises=f}                  => {ring.type=e}                0.1213688  0.5621437 0.2159035 1.6451207   986
[5720] {cap.shape=f,                                                                                              
        ring.type=e}                => {ring.number=o}              0.1213688  0.9390476 0.1292467 1.0188065   986
[5721] {cap.shape=f,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.1292467  1.0000000 0.1292467 1.0265353  1050
[5722] {cap.shape=f,                                                                                              
        ring.type=e}                => {veil.color=w}               0.1290005  0.9980952 0.1292467 1.0232869  1048
[5723] {cap.surface=y,                                                                                            
        ring.type=e}                => {class=p}                    0.1093058  0.8809524 0.1240768 1.8275938   888
[5724] {class=p,                                                                                                  
        ring.type=e}                => {cap.surface=y}              0.1093058  0.5022624 0.2176268 1.2578237   888
[5725] {class=p,                                                                                                  
        cap.surface=y}              => {ring.type=e}                0.1093058  0.5103448 0.2141802 1.4935308   888
[5726] {cap.surface=y,                                                                                            
        ring.type=e}                => {population=v}               0.1112752  0.8968254 0.1240768 1.8034182   904
[5727] {ring.type=e,                                                                                              
        population=v}               => {cap.surface=y}              0.1112752  0.5000000 0.2225505 1.2521578   904
[5728] {cap.surface=y,                                                                                            
        population=v}               => {ring.type=e}                0.1112752  0.5044643 0.2205810 1.4763213   904
[5729] {cap.surface=y,                                                                                            
        ring.type=e}                => {stalk.shape=t}              0.1063516  0.8571429 0.1240768 1.5111607   864
[5730] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {ring.type=e}                0.1063516  0.5000000 0.2127031 1.4632565   864
[5731] {cap.surface=y,                                                                                            
        ring.type=e}                => {bruises=f}                  0.1122600  0.9047619 0.1240768 1.5480804   912
[5732] {cap.surface=y,                                                                                            
        bruises=f}                  => {ring.type=e}                0.1122600  0.5520581 0.2033481 1.6156052   912
[5733] {cap.surface=y,                                                                                            
        ring.type=e}                => {gill.spacing=c}             0.1201379  0.9682540 0.1240768 1.1547409   976
[5734] {gill.spacing=c,                                                                                           
        ring.type=e}                => {cap.surface=y}              0.1201379  0.5000000 0.2402757 1.2521578   976
[5735] {cap.surface=y,                                                                                            
        ring.type=e}                => {ring.number=o}              0.1122600  0.9047619 0.1240768 0.9816087   912
[5736] {cap.surface=y,                                                                                            
        ring.type=e}                => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[5737] {cap.surface=y,                                                                                            
        ring.type=e}                => {veil.color=w}               0.1230921  0.9920635 0.1240768 1.0171030  1000
[5738] {odor=n,                                                                                                   
        ring.type=e}                => {class=e}                    0.1240768  0.9618321 0.1290005 1.8569210  1008
[5739] {class=e,                                                                                                  
        ring.type=e}                => {odor=n}                     0.1240768  1.0000000 0.1240768 2.3027211  1008
[5740] {odor=n,                                                                                                   
        ring.type=e}                => {stalk.color.below.ring=w}   0.1063516  0.8244275 0.1290005 1.5277484   864
[5741] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {odor=n}                     0.1063516  0.5000000 0.2127031 1.1513605   864
[5742] {odor=n,                                                                                                   
        ring.type=e}                => {stalk.color.above.ring=w}   0.1161989  0.9007634 0.1290005 1.6392925   944
[5743] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {odor=n}                     0.1161989  0.5221239 0.2225505 1.2023057   944
[5744] {odor=n,                                                                                                   
        ring.type=e}                => {bruises=f}                  0.1053668  0.8167939 0.1290005 1.3975639   856
[5745] {bruises=f,                                                                                                
        odor=n}                     => {ring.type=e}                0.1053668  0.5721925 0.1841457 1.6745288   856
[5746] {odor=n,                                                                                                   
        ring.type=e}                => {gill.size=b}                0.1181684  0.9160305 0.1290005 1.3260570   960
[5747] {gill.size=b,                                                                                              
        ring.type=e}                => {odor=n}                     0.1181684  1.0000000 0.1181684 2.3027211   960
[5748] {odor=n,                                                                                                   
        ring.type=e}                => {ring.number=o}              0.1053668  0.8167939 0.1290005 0.8861690   856
[5749] {odor=n,                                                                                                   
        ring.type=e}                => {gill.attachment=f}          0.1290005  1.0000000 0.1290005 1.0265353  1048
[5750] {odor=n,                                                                                                   
        ring.type=e}                => {veil.color=w}               0.1280158  0.9923664 0.1290005 1.0174135  1040
[5751] {cap.shape=x,                                                                                              
        ring.type=e}                => {stalk.shape=t}              0.1181684  0.9160305 0.1290005 1.6149809   960
[5752] {cap.shape=x,                                                                                              
        ring.type=e}                => {bruises=f}                  0.1211226  0.9389313 0.1290005 1.6065455   984
[5753] {cap.shape=x,                                                                                              
        ring.type=e}                => {ring.number=o}              0.1211226  0.9389313 0.1290005 1.0186803   984
[5754] {cap.shape=x,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.1290005  1.0000000 0.1290005 1.0265353  1048
[5755] {cap.shape=x,                                                                                              
        ring.type=e}                => {veil.color=w}               0.1290005  1.0000000 0.1290005 1.0252398  1048
[5756] {class=p,                                                                                                  
        ring.type=e}                => {population=v}               0.2166420  0.9954751 0.2176268 2.0017920  1760
[5757] {ring.type=e,                                                                                              
        population=v}               => {class=p}                    0.2166420  0.9734513 0.2225505 2.0194889  1760
[5758] {class=p,                                                                                                  
        population=v}               => {ring.type=e}                0.2166420  0.6179775 0.3505662 1.8085193  1760
[5759] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {class=p}                    0.1063516  0.5000000 0.2127031 1.0372829   864
[5760] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {ring.type=e}                0.1063516  0.5142857 0.2067947 1.5050638   864
[5761] {class=p,                                                                                                  
        ring.type=e}                => {stalk.color.above.ring=w}   0.1102905  0.5067873 0.2176268 0.9222984   896
[5762] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {ring.type=e}                0.1102905  0.5233645 0.2107336 1.5316330   896
[5763] {class=p,                                                                                                  
        ring.type=e}                => {stalk.shape=t}              0.2127031  0.9773756 0.2176268 1.7231335  1728
[5764] {stalk.shape=t,                                                                                            
        ring.type=e}                => {class=p}                    0.2127031  0.6923077 0.3072378 1.4362379  1728
[5765] {class=p,                                                                                                  
        stalk.shape=t}              => {ring.type=e}                0.2127031  0.8571429 0.2481536 2.5084397  1728
[5766] {class=p,                                                                                                  
        ring.type=e}                => {bruises=f}                  0.2176268  1.0000000 0.2176268 1.7110362  1768
[5767] {bruises=f,                                                                                                
        ring.type=e}                => {class=p}                    0.2176268  0.6842105 0.3180699 1.4194398  1768
[5768] {class=p,                                                                                                  
        bruises=f}                  => {ring.type=e}                0.2176268  0.5370595 0.4052191 1.5717117  1768
[5769] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {class=p}                    0.1063516  0.5901639 0.1802068 1.2243340   864
[5770] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {ring.type=e}                0.1063516  0.5625000 0.1890694 1.6461635   864
[5771] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {class=p}                    0.1063516  0.5901639 0.1802068 1.2243340   864
[5772] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {ring.type=e}                0.1063516  0.5625000 0.1890694 1.6461635   864
[5773] {class=p,                                                                                                  
        ring.type=e}                => {gill.spacing=c}             0.2166420  0.9954751 0.2176268 1.1872049  1760
[5774] {gill.spacing=c,                                                                                           
        ring.type=e}                => {class=p}                    0.2166420  0.9016393 0.2402757 1.8705102  1760
[5775] {class=p,                                                                                                  
        ring.type=e}                => {ring.number=o}              0.2176268  1.0000000 0.2176268 1.0849359  1768
[5776] {ring.number=o,                                                                                            
        ring.type=e}                => {class=p}                    0.2176268  0.6842105 0.3180699 1.4194398  1768
[5777] {class=p,                                                                                                  
        ring.type=e}                => {gill.attachment=f}          0.2176268  1.0000000 0.2176268 1.0265353  1768
[5778] {gill.attachment=f,                                                                                        
        ring.type=e}                => {class=p}                    0.2176268  0.6368876 0.3417036 1.3212653  1768
[5779] {class=p,                                                                                                  
        ring.type=e}                => {veil.color=w}               0.2166420  0.9954751 0.2176268 1.0206007  1760
[5780] {veil.color=w,                                                                                             
        ring.type=e}                => {class=p}                    0.2166420  0.6358382 0.3407189 1.3190881  1760
[5781] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {population=v}               0.1063516  0.5000000 0.2127031 1.0054455   864
[5782] {ring.type=e,                                                                                              
        population=v}               => {stalk.color.above.ring=w}   0.1161989  0.5221239 0.2225505 0.9502093   944
[5783] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {population=v}               0.1161989  0.5221239 0.2225505 1.0499343   944
[5784] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {ring.type=e}                0.1161989  0.5086207 0.2284589 1.4884850   944
[5785] {ring.type=e,                                                                                              
        population=v}               => {stalk.shape=t}              0.2127031  0.9557522 0.2225505 1.6850111  1728
[5786] {stalk.shape=t,                                                                                            
        ring.type=e}                => {population=v}               0.2127031  0.6923077 0.3072378 1.3921554  1728
[5787] {stalk.shape=t,                                                                                            
        population=v}               => {ring.type=e}                0.2127031  0.6101695 0.3485968 1.7856689  1728
[5788] {ring.type=e,                                                                                              
        population=v}               => {bruises=f}                  0.2225505  1.0000000 0.2225505 1.7110362  1808
[5789] {bruises=f,                                                                                                
        ring.type=e}                => {population=v}               0.2225505  0.6996904 0.3180699 1.4070012  1808
[5790] {bruises=f,                                                                                                
        population=v}               => {ring.type=e}                0.2225505  0.6647059 0.3348104 1.9452704  1808
[5791] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {population=v}               0.1093058  0.6065574 0.1802068 1.2197208   888
[5792] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {population=v}               0.1093058  0.6065574 0.1802068 1.2197208   888
[5793] {ring.type=e,                                                                                              
        population=v}               => {gill.spacing=c}             0.2166420  0.9734513 0.2225505 1.1609393  1760
[5794] {gill.spacing=c,                                                                                           
        ring.type=e}                => {population=v}               0.2166420  0.9016393 0.2402757 1.8130985  1760
[5795] {ring.type=e,                                                                                              
        population=v}               => {ring.number=o}              0.2225505  1.0000000 0.2225505 1.0849359  1808
[5796] {ring.number=o,                                                                                            
        ring.type=e}                => {population=v}               0.2225505  0.6996904 0.3180699 1.4070012  1808
[5797] {ring.type=e,                                                                                              
        population=v}               => {gill.attachment=f}          0.2225505  1.0000000 0.2225505 1.0265353  1808
[5798] {gill.attachment=f,                                                                                        
        ring.type=e}                => {population=v}               0.2225505  0.6512968 0.3417036 1.3096870  1808
[5799] {ring.type=e,                                                                                              
        population=v}               => {veil.color=w}               0.2225505  1.0000000 0.2225505 1.0252398  1808
[5800] {veil.color=w,                                                                                             
        ring.type=e}                => {population=v}               0.2225505  0.6531792 0.3407189 1.3134722  1808
[5801] {class=e,                                                                                                  
        ring.type=e}                => {stalk.color.below.ring=w}   0.1063516  0.8571429 0.1240768 1.5883733   864
[5802] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {class=e}                    0.1063516  0.5000000 0.2127031 0.9653042   864
[5803] {class=e,                                                                                                  
        ring.type=e}                => {stalk.color.above.ring=w}   0.1122600  0.9047619 0.1240768 1.6465694   912
[5804] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {class=e}                    0.1122600  0.5044248 0.2225505 0.9738467   912
[5805] {class=e,                                                                                                  
        ring.type=e}                => {bruises=f}                  0.1004431  0.8095238 0.1240768 1.3851246   816
[5806] {class=e,                                                                                                  
        bruises=f}                  => {ring.type=e}                0.1004431  0.5604396 0.1792221 1.6401336   816
[5807] {class=e,                                                                                                  
        ring.type=e}                => {gill.size=b}                0.1181684  0.9523810 0.1240768 1.3786783   960
[5808] {gill.size=b,                                                                                              
        ring.type=e}                => {class=e}                    0.1181684  1.0000000 0.1181684 1.9306084   960
[5809] {class=e,                                                                                                  
        ring.type=e}                => {ring.number=o}              0.1004431  0.8095238 0.1240768 0.8782814   816
[5810] {class=e,                                                                                                  
        ring.type=e}                => {gill.attachment=f}          0.1240768  1.0000000 0.1240768 1.0265353  1008
[5811] {class=e,                                                                                                  
        ring.type=e}                => {veil.color=w}               0.1240768  1.0000000 0.1240768 1.0252398  1008
[5812] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {stalk.color.above.ring=w}   0.1536189  0.7222222 0.2127031 1.3143668  1248
[5813] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {stalk.color.below.ring=w}   0.1536189  0.6902655 0.2225505 1.2791325  1248
[5814] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {stalk.shape=t}              0.2008863  0.9444444 0.2127031 1.6650752  1632
[5815] {stalk.shape=t,                                                                                            
        ring.type=e}                => {stalk.color.below.ring=w}   0.2008863  0.6538462 0.3072378 1.2116437  1632
[5816] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {ring.type=e}                0.2008863  0.6296296 0.3190547 1.8426193  1632
[5817] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {bruises=f}                  0.2008863  0.9444444 0.2127031 1.6159787  1632
[5818] {bruises=f,                                                                                                
        ring.type=e}                => {stalk.color.below.ring=w}   0.2008863  0.6315789 0.3180699 1.1703803  1632
[5819] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {ring.type=e}                0.2008863  0.7234043 0.2776957 2.1170519  1632
[5820] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1122600  0.5277778 0.2127031 0.8686521   912
[5821] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {stalk.color.below.ring=w}   0.1122600  0.6229508 0.1802068 1.1543915   912
[5822] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1122600  0.5277778 0.2127031 0.8283745   912
[5823] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {stalk.color.below.ring=w}   0.1122600  0.6229508 0.1802068 1.1543915   912
[5824] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {gill.size=b}                0.1063516  0.5000000 0.2127031 0.7238061   864
[5825] {gill.size=b,                                                                                              
        ring.type=e}                => {stalk.color.below.ring=w}   0.1063516  0.9000000 0.1181684 1.6677920   864
[5826] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {gill.spacing=c}             0.1181684  0.5555556 0.2127031 0.6625563   960
[5827] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {ring.number=o}              0.2008863  0.9444444 0.2127031 1.0246617  1632
[5828] {ring.number=o,                                                                                            
        ring.type=e}                => {stalk.color.below.ring=w}   0.2008863  0.6315789 0.3180699 1.1703803  1632
[5829] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[5830] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.color.below.ring=w}   0.2127031  0.6224784 0.3417036 1.1535161  1728
[5831] {stalk.color.below.ring=w,                                                                                 
        ring.type=e}                => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[5832] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.color.below.ring=w}   0.2127031  0.6242775 0.3407189 1.1568499  1728
[5833] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {stalk.shape=t}              0.2008863  0.9026549 0.2225505 1.5913993  1632
[5834] {stalk.shape=t,                                                                                            
        ring.type=e}                => {stalk.color.above.ring=w}   0.2008863  0.6538462 0.3072378 1.1899297  1632
[5835] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {ring.type=e}                0.2008863  0.6296296 0.3190547 1.8426193  1632
[5836] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {bruises=f}                  0.2107336  0.9469027 0.2225505 1.6201847  1712
[5837] {bruises=f,                                                                                                
        ring.type=e}                => {stalk.color.above.ring=w}   0.2107336  0.6625387 0.3180699 1.2057492  1712
[5838] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {ring.type=e}                0.2107336  0.7328767 0.2875431 2.1447732  1712
[5839] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1152142  0.5176991 0.2225505 0.8520639   936
[5840] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {stalk.color.above.ring=w}   0.1152142  0.6393443 0.1802068 1.1635378   936
[5841] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1152142  0.5176991 0.2225505 0.8125556   936
[5842] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {stalk.color.above.ring=w}   0.1152142  0.6393443 0.1802068 1.1635378   936
[5843] {gill.size=b,                                                                                              
        ring.type=e}                => {stalk.color.above.ring=w}   0.1063516  0.9000000 0.1181684 1.6379032   864
[5844] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {gill.spacing=c}             0.1221073  0.5486726 0.2225505 0.6543476   992
[5845] {gill.spacing=c,                                                                                           
        ring.type=e}                => {stalk.color.above.ring=w}   0.1221073  0.5081967 0.2402757 0.9248634   992
[5846] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {ring.number=o}              0.2107336  0.9469027 0.2225505 1.0273287  1712
[5847] {ring.number=o,                                                                                            
        ring.type=e}                => {stalk.color.above.ring=w}   0.2107336  0.6625387 0.3180699 1.2057492  1712
[5848] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {gill.attachment=f}          0.2225505  1.0000000 0.2225505 1.0265353  1808
[5849] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.color.above.ring=w}   0.2225505  0.6512968 0.3417036 1.1852902  1808
[5850] {stalk.color.above.ring=w,                                                                                 
        ring.type=e}                => {veil.color=w}               0.2225505  1.0000000 0.2225505 1.0252398  1808
[5851] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.color.above.ring=w}   0.2225505  0.6531792 0.3407189 1.1887159  1808
[5852] {stalk.shape=t,                                                                                            
        ring.type=e}                => {bruises=f}                  0.3072378  1.0000000 0.3072378 1.7110362  2496
[5853] {bruises=f,                                                                                                
        ring.type=e}                => {stalk.shape=t}              0.3072378  0.9659443 0.3180699 1.7029799  2496
[5854] {bruises=f,                                                                                                
        stalk.shape=t}              => {ring.type=e}                0.3072378  1.0000000 0.3072378 2.9265130  2496
[5855] {stalk.shape=t,                                                                                            
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1536189  0.5000000 0.3072378 0.8229335  1248
[5856] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {stalk.shape=t}              0.1536189  0.8524590 0.1802068 1.5029030  1248
[5857] {stalk.shape=t,                                                                                            
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1536189  0.5000000 0.3072378 0.7847759  1248
[5858] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {stalk.shape=t}              0.1536189  0.8524590 0.1802068 1.5029030  1248
[5859] {stalk.shape=t,                                                                                            
        ring.type=e}                => {gill.spacing=c}             0.2127031  0.6923077 0.3072378 0.8256470  1728
[5860] {gill.spacing=c,                                                                                           
        ring.type=e}                => {stalk.shape=t}              0.2127031  0.8852459 0.2402757 1.5607070  1728
[5861] {stalk.shape=t,                                                                                            
        ring.type=e}                => {ring.number=o}              0.3072378  1.0000000 0.3072378 1.0849359  2496
[5862] {ring.number=o,                                                                                            
        ring.type=e}                => {stalk.shape=t}              0.3072378  0.9659443 0.3180699 1.7029799  2496
[5863] {stalk.shape=t,                                                                                            
        ring.number=o}              => {ring.type=e}                0.3072378  0.5416667 0.5672083 1.5851945  2496
[5864] {stalk.shape=t,                                                                                            
        ring.type=e}                => {gill.attachment=f}          0.3072378  1.0000000 0.3072378 1.0265353  2496
[5865] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.shape=t}              0.3072378  0.8991354 0.3417036 1.5851945  2496
[5866] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {ring.type=e}                0.3072378  0.5416667 0.5672083 1.5851945  2496
[5867] {stalk.shape=t,                                                                                            
        ring.type=e}                => {veil.color=w}               0.3072378  1.0000000 0.3072378 1.0252398  2496
[5868] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.shape=t}              0.3072378  0.9017341 0.3407189 1.5897760  2496
[5869] {stalk.shape=t,                                                                                            
        veil.color=w}               => {ring.type=e}                0.3072378  0.5416667 0.5672083 1.5851945  2496
[5870] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {bruises=f}                  0.1565731  0.8688525 0.1802068 1.4866380  1272
[5871] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {ring.type=e}                0.1565731  0.6708861 0.2333826 1.9633568  1272
[5872] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {bruises=f}                  0.1565731  0.8688525 0.1802068 1.4866380  1272
[5873] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {ring.type=e}                0.1565731  0.6543210 0.2392910 1.9148789  1272
[5874] {bruises=f,                                                                                                
        ring.type=e}                => {gill.spacing=c}             0.2166420  0.6811146 0.3180699 0.8122981  1760
[5875] {gill.spacing=c,                                                                                           
        ring.type=e}                => {bruises=f}                  0.2166420  0.9016393 0.2402757 1.5427376  1760
[5876] {bruises=f,                                                                                                
        ring.type=e}                => {ring.number=o}              0.3180699  1.0000000 0.3180699 1.0849359  2584
[5877] {ring.number=o,                                                                                            
        ring.type=e}                => {bruises=f}                  0.3180699  1.0000000 0.3180699 1.7110362  2584
[5878] {bruises=f,                                                                                                
        ring.number=o}              => {ring.type=e}                0.3180699  0.5862069 0.5425899 1.7155421  2584
[5879] {bruises=f,                                                                                                
        ring.type=e}                => {gill.attachment=f}          0.3180699  1.0000000 0.3180699 1.0265353  2584
[5880] {gill.attachment=f,                                                                                        
        ring.type=e}                => {bruises=f}                  0.3180699  0.9308357 0.3417036 1.5926937  2584
[5881] {bruises=f,                                                                                                
        gill.attachment=f}          => {ring.type=e}                0.3180699  0.5694138 0.5585918 1.6663970  2584
[5882] {bruises=f,                                                                                                
        ring.type=e}                => {veil.color=w}               0.3170852  0.9969040 0.3180699 1.0220657  2576
[5883] {veil.color=w,                                                                                             
        ring.type=e}                => {bruises=f}                  0.3170852  0.9306358 0.3407189 1.5923516  2576
[5884] {bruises=f,                                                                                                
        veil.color=w}               => {ring.type=e}                0.3170852  0.5664028 0.5598227 1.6575852  2576
[5885] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1019202  0.5655738 0.1802068 0.8876973   828
[5886] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1019202  0.5655738 0.1802068 0.9308593   828
[5887] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {gill.spacing=c}             0.1299852  0.7213115 0.1802068 0.8602370  1056
[5888] {gill.spacing=c,                                                                                           
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1299852  0.5409836 0.2402757 0.8903871  1056
[5889] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {ring.number=o}              0.1565731  0.8688525 0.1802068 0.9426492  1272
[5890] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {gill.attachment=f}          0.1802068  1.0000000 0.1802068 1.0265353  1464
[5891] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1802068  0.5273775 0.3417036 0.8679933  1464
[5892] {stalk.surface.below.ring=s,                                                                               
        ring.type=e}                => {veil.color=w}               0.1802068  1.0000000 0.1802068 1.0252398  1464
[5893] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.surface.below.ring=s} 0.1802068  0.5289017 0.3407189 0.8705020  1464
[5894] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {gill.spacing=c}             0.1299852  0.7213115 0.1802068 0.8602370  1056
[5895] {gill.spacing=c,                                                                                           
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1299852  0.5409836 0.2402757 0.8491018  1056
[5896] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {ring.number=o}              0.1565731  0.8688525 0.1802068 0.9426492  1272
[5897] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {gill.attachment=f}          0.1802068  1.0000000 0.1802068 1.0265353  1464
[5898] {gill.attachment=f,                                                                                        
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1802068  0.5273775 0.3417036 0.8277463  1464
[5899] {stalk.surface.above.ring=s,                                                                               
        ring.type=e}                => {veil.color=w}               0.1802068  1.0000000 0.1802068 1.0252398  1464
[5900] {veil.color=w,                                                                                             
        ring.type=e}                => {stalk.surface.above.ring=s} 0.1802068  0.5289017 0.3407189 0.8301387  1464
[5901] {gill.size=b,                                                                                              
        ring.type=e}                => {gill.attachment=f}          0.1181684  1.0000000 0.1181684 1.0265353   960
[5902] {gill.size=b,                                                                                              
        ring.type=e}                => {veil.color=w}               0.1181684  1.0000000 0.1181684 1.0252398   960
[5903] {gill.spacing=c,                                                                                           
        ring.type=e}                => {ring.number=o}              0.2166420  0.9016393 0.2402757 0.9782209  1760
[5904] {ring.number=o,                                                                                            
        ring.type=e}                => {gill.spacing=c}             0.2166420  0.6811146 0.3180699 0.8122981  1760
[5905] {gill.spacing=c,                                                                                           
        ring.type=e}                => {gill.attachment=f}          0.2402757  1.0000000 0.2402757 1.0265353  1952
[5906] {gill.attachment=f,                                                                                        
        ring.type=e}                => {gill.spacing=c}             0.2402757  0.7031700 0.3417036 0.8386015  1952
[5907] {gill.spacing=c,                                                                                           
        ring.type=e}                => {veil.color=w}               0.2402757  1.0000000 0.2402757 1.0252398  1952
[5908] {veil.color=w,                                                                                             
        ring.type=e}                => {gill.spacing=c}             0.2402757  0.7052023 0.3407189 0.8410252  1952
[5909] {ring.number=o,                                                                                            
        ring.type=e}                => {gill.attachment=f}          0.3180699  1.0000000 0.3180699 1.0265353  2584
[5910] {gill.attachment=f,                                                                                        
        ring.type=e}                => {ring.number=o}              0.3180699  0.9308357 0.3417036 1.0098971  2584
[5911] {ring.number=o,                                                                                            
        ring.type=e}                => {veil.color=w}               0.3170852  0.9969040 0.3180699 1.0220657  2576
[5912] {veil.color=w,                                                                                             
        ring.type=e}                => {ring.number=o}              0.3170852  0.9306358 0.3407189 1.0096802  2576
[5913] {gill.attachment=f,                                                                                        
        ring.type=e}                => {veil.color=w}               0.3407189  0.9971182 0.3417036 1.0222852  2768
[5914] {veil.color=w,                                                                                             
        ring.type=e}                => {gill.attachment=f}          0.3407189  1.0000000 0.3407189 1.0265353  2768
[5915] {cap.shape=f,                                                                                              
        habitat=d}                  => {bruises=t}                  0.1122600  0.6676428 0.1681438 1.6066143   912
[5916] {bruises=t,                                                                                                
        habitat=d}                  => {cap.shape=f}                0.1122600  0.5000000 0.2245199 1.2887056   912
[5917] {cap.shape=f,                                                                                              
        bruises=t}                  => {habitat=d}                  0.1122600  0.6523605 0.1720827 1.6835377   912
[5918] {cap.shape=f,                                                                                              
        habitat=d}                  => {odor=n}                     0.1105367  0.6573939 0.1681438 1.5137947   898
[5919] {cap.shape=f,                                                                                              
        odor=n}                     => {habitat=d}                  0.1105367  0.5986667 0.1846381 1.5449708   898
[5920] {cap.shape=f,                                                                                              
        habitat=d}                  => {stalk.root=b}               0.1390940  0.8272328 0.1681438 1.7797773  1130
[5921] {cap.shape=f,                                                                                              
        stalk.root=b}               => {habitat=d}                  0.1390940  0.6355456 0.2188577 1.6401436  1130
[5922] {cap.shape=f,                                                                                              
        habitat=d}                  => {ring.type=p}                0.1125062  0.6691069 0.1681438 1.3699154   914
[5923] {cap.shape=f,                                                                                              
        ring.type=p}                => {habitat=d}                  0.1125062  0.6445698 0.1745446 1.6634324   914
[5924] {cap.shape=f,                                                                                              
        habitat=d}                  => {class=e}                    0.1154604  0.6866764 0.1681438 1.3257033   938
[5925] {class=e,                                                                                                  
        cap.shape=f}                => {habitat=d}                  0.1154604  0.5877193 0.1964549 1.5167191   938
[5926] {cap.shape=f,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.1358936  0.8081991 0.1681438 1.4248719  1104
[5927] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {habitat=d}                  0.1358936  0.5476190 0.2481536 1.4132329  1104
[5928] {cap.shape=f,                                                                                              
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  0.7379209 0.1681438 1.2145198  1008
[5929] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {habitat=d}                  0.1240768  0.5606229 0.2213195 1.4467918  1008
[5930] {cap.shape=f,                                                                                              
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1270310  0.7554905 0.1681438 1.1857814  1032
[5931] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {habitat=d}                  0.1270310  0.5380605 0.2360906 1.3885652  1032
[5932] {cap.shape=f,                                                                                              
        habitat=d}                  => {gill.size=b}                0.1346627  0.8008785 0.1681438 1.1593615  1094
[5933] {cap.shape=f,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.1622354  0.9648609 0.1681438 1.1506944  1318
[5934] {cap.shape=f,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1664205  0.9897511 0.1681438 1.0738165  1352
[5935] {cap.shape=f,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1674052  0.9956076 0.1681438 1.0220263  1360
[5936] {cap.shape=f,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1681438  1.0000000 0.1681438 1.0252398  1366
[5937] {cap.surface=y,                                                                                            
        habitat=d}                  => {bruises=t}                  0.1063516  0.5869565 0.1811915 1.4124511   864
[5938] {cap.surface=y,                                                                                            
        bruises=t}                  => {habitat=d}                  0.1063516  0.5427136 0.1959626 1.4005734   864
[5939] {cap.surface=y,                                                                                            
        habitat=d}                  => {odor=n}                     0.1147218  0.6331522 0.1811915 1.4579729   932
[5940] {odor=n,                                                                                                   
        habitat=d}                  => {cap.surface=y}              0.1147218  0.5132159 0.2235352 1.2852545   932
[5941] {cap.surface=y,                                                                                            
        odor=n}                     => {habitat=d}                  0.1147218  0.8321429 0.1378631 2.1474995   932
[5942] {cap.surface=y,                                                                                            
        habitat=d}                  => {stalk.root=b}               0.1334318  0.7364130 0.1811915 1.5843802  1084
[5943] {cap.surface=y,                                                                                            
        stalk.root=b}               => {habitat=d}                  0.1334318  0.6775000 0.1969473 1.7484149  1084
[5944] {cap.surface=y,                                                                                            
        habitat=d}                  => {ring.type=p}                0.1068439  0.5896739 0.1811915 1.2072860   868
[5945] {cap.surface=y,                                                                                            
        ring.type=p}                => {habitat=d}                  0.1068439  0.5771277 0.1851305 1.4893854   868
[5946] {cap.surface=y,                                                                                            
        habitat=d}                  => {population=v}               0.1068439  0.5896739 0.1811915 1.1857700   868
[5947] {cap.surface=y,                                                                                            
        habitat=d}                  => {class=e}                    0.1127523  0.6222826 0.1811915 1.2013840   916
[5948] {class=e,                                                                                                  
        cap.surface=y}              => {habitat=d}                  0.1127523  0.6090426 0.1851305 1.5717477   916
[5949] {cap.surface=y,                                                                                            
        habitat=d}                  => {stalk.shape=t}              0.1418021  0.7826087 0.1811915 1.3797554  1152
[5950] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {habitat=d}                  0.1418021  0.6666667 0.2127031 1.7204574  1152
[5951] {cap.surface=y,                                                                                            
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  0.6847826 0.1811915 1.1270612  1008
[5952] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {habitat=d}                  0.1240768  0.5466377 0.2269818 1.4107005  1008
[5953] {cap.surface=y,                                                                                            
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1299852  0.7173913 0.1811915 1.1259828  1056
[5954] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {habitat=d}                  0.1299852  0.5067179 0.2565239 1.3076797  1056
[5955] {cap.surface=y,                                                                                            
        habitat=d}                  => {gill.size=b}                0.1378631  0.7608696 0.1811915 1.1014441  1120
[5956] {gill.size=b,                                                                                              
        habitat=d}                  => {cap.surface=y}              0.1378631  0.5081670 0.2712949 1.2726105  1120
[5957] {cap.surface=y,                                                                                            
        gill.size=b}                => {habitat=d}                  0.1378631  0.5204461 0.2648941 1.3431080  1120
[5958] {cap.surface=y,                                                                                            
        habitat=d}                  => {gill.spacing=c}             0.1811915  1.0000000 0.1811915 1.1926013  1472
[5959] {cap.surface=y,                                                                                            
        habitat=d}                  => {ring.number=o}              0.1762678  0.9728261 0.1811915 1.0554539  1432
[5960] {cap.surface=y,                                                                                            
        habitat=d}                  => {gill.attachment=f}          0.1789759  0.9877717 0.1811915 1.0139825  1454
[5961] {cap.surface=y,                                                                                            
        habitat=d}                  => {veil.color=w}               0.1811915  1.0000000 0.1811915 1.0252398  1472
[5962] {bruises=t,                                                                                                
        habitat=d}                  => {odor=n}                     0.2127031  0.9473684 0.2245199 2.1815252  1728
[5963] {odor=n,                                                                                                   
        habitat=d}                  => {bruises=t}                  0.2127031  0.9515419 0.2235352 2.2897885  1728
[5964] {bruises=t,                                                                                                
        odor=n}                     => {habitat=d}                  0.2127031  0.8503937 0.2501231 2.1945992  1728
[5965] {bruises=t,                                                                                                
        habitat=d}                  => {cap.shape=x}                0.1122600  0.5000000 0.2245199 1.1110503   912
[5966] {cap.shape=x,                                                                                              
        habitat=d}                  => {bruises=t}                  0.1122600  0.5853659 0.1917774 1.4086233   912
[5967] {cap.shape=x,                                                                                              
        bruises=t}                  => {habitat=d}                  0.1122600  0.5643564 0.1989168 1.4564268   912
[5968] {bruises=t,                                                                                                
        habitat=d}                  => {stalk.root=b}               0.2245199  1.0000000 0.2245199 2.1514831  1824
[5969] {stalk.root=b,                                                                                             
        habitat=d}                  => {bruises=t}                  0.2245199  0.7426710 0.3023141 1.7871621  1824
[5970] {bruises=t,                                                                                                
        stalk.root=b}               => {habitat=d}                  0.2245199  0.8201439 0.2737568 2.1165340  1824
[5971] {bruises=t,                                                                                                
        habitat=d}                  => {ring.type=p}                0.2245199  1.0000000 0.2245199 2.0473790  1824
[5972] {ring.type=p,                                                                                              
        habitat=d}                  => {bruises=t}                  0.2245199  0.9011858 0.2491384 2.1686117  1824
[5973] {bruises=t,                                                                                                
        ring.type=p}                => {habitat=d}                  0.2245199  0.5728643 0.3919252 1.4783830  1824
[5974] {bruises=t,                                                                                                
        habitat=d}                  => {population=v}               0.1181684  0.5263158 0.2245199 1.0583637   960
[5975] {population=v,                                                                                             
        habitat=d}                  => {bruises=t}                  0.1181684  0.5042017 0.2343673 1.2133100   960
[5976] {bruises=t,                                                                                                
        population=v}               => {habitat=d}                  0.1181684  0.7272727 0.1624815 1.8768627   960
[5977] {bruises=t,                                                                                                
        habitat=d}                  => {class=e}                    0.2245199  1.0000000 0.2245199 1.9306084  1824
[5978] {class=e,                                                                                                  
        habitat=d}                  => {bruises=t}                  0.2245199  0.9702128 0.2314131 2.3347182  1824
[5979] {class=e,                                                                                                  
        bruises=t}                  => {habitat=d}                  0.2245199  0.6627907 0.3387494 1.7104548  1824
[5980] {bruises=t,                                                                                                
        habitat=d}                  => {stalk.shape=t}              0.2245199  1.0000000 0.2245199 1.7630208  1824
[5981] {stalk.shape=t,                                                                                            
        habitat=d}                  => {bruises=t}                  0.2245199  0.7600000 0.2954210 1.8288626  1824
[5982] {bruises=t,                                                                                                
        stalk.shape=t}              => {habitat=d}                  0.2245199  0.8636364 0.2599705 2.2287744  1824
[5983] {bruises=t,                                                                                                
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2245199  1.0000000 0.2245199 1.6458671  1824
[5984] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {bruises=t}                  0.2245199  0.7916667 0.2836041 1.9050652  1824
[5985] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {habitat=d}                  0.2245199  0.6000000 0.3741999 1.5484117  1824
[5986] {bruises=t,                                                                                                
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2245199  1.0000000 0.2245199 1.5695518  1824
[5987] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {bruises=t}                  0.2245199  0.7755102 0.2895126 1.8661863  1824
[5988] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {habitat=d}                  0.2245199  0.5643564 0.3978336 1.4564268  1824
[5989] {bruises=t,                                                                                                
        habitat=d}                  => {gill.size=b}                0.2127031  0.9473684 0.2245199 1.3714221  1728
[5990] {gill.size=b,                                                                                              
        habitat=d}                  => {bruises=t}                  0.2127031  0.7840290 0.2712949 1.8866860  1728
[5991] {bruises=t,                                                                                                
        gill.size=b}                => {habitat=d}                  0.2127031  0.5729443 0.3712457 1.4785894  1728
[5992] {bruises=t,                                                                                                
        habitat=d}                  => {gill.spacing=c}             0.2127031  0.9473684 0.2245199 1.1298328  1728
[5993] {gill.spacing=c,                                                                                           
        habitat=d}                  => {bruises=t}                  0.2127031  0.5845737 0.3638602 1.4067172  1728
[5994] {bruises=t,                                                                                                
        gill.spacing=c}             => {habitat=d}                  0.2127031  0.5281174 0.4027573 1.3629052  1728
[5995] {bruises=t,                                                                                                
        habitat=d}                  => {ring.number=o}              0.2245199  1.0000000 0.2245199 1.0849359  1824
[5996] {ring.number=o,                                                                                            
        habitat=d}                  => {bruises=t}                  0.2245199  0.5876289 0.3820778 1.4140690  1824
[5997] {bruises=t,                                                                                                
        ring.number=o}              => {habitat=d}                  0.2245199  0.5922078 0.3791236 1.5283024  1824
[5998] {bruises=t,                                                                                                
        habitat=d}                  => {gill.attachment=f}          0.2245199  1.0000000 0.2245199 1.0265353  1824
[5999] {gill.attachment=f,                                                                                        
        habitat=d}                  => {bruises=t}                  0.2245199  0.5827476 0.3852782 1.4023227  1824
[6000] {bruises=t,                                                                                                
        gill.attachment=f}          => {habitat=d}                  0.2245199  0.5402844 0.4155588 1.3943044  1824
[6001] {bruises=t,                                                                                                
        habitat=d}                  => {veil.color=w}               0.2245199  1.0000000 0.2245199 1.0252398  1824
[6002] {veil.color=w,                                                                                             
        habitat=d}                  => {bruises=t}                  0.2245199  0.5794155 0.3874938 1.3943044  1824
[6003] {bruises=t,                                                                                                
        veil.color=w}               => {habitat=d}                  0.2245199  0.5402844 0.4155588 1.3943044  1824
[6004] {cap.shape=x,                                                                                              
        habitat=d}                  => {odor=n}                     0.1105367  0.5763800 0.1917774 1.3272423   898
[6005] {cap.shape=x,                                                                                              
        odor=n}                     => {habitat=d}                  0.1105367  0.5771208 0.1915313 1.4893677   898
[6006] {odor=n,                                                                                                   
        habitat=d}                  => {stalk.root=b}               0.2136878  0.9559471 0.2235352 2.0567041  1736
[6007] {stalk.root=b,                                                                                             
        habitat=d}                  => {odor=n}                     0.2136878  0.7068404 0.3023141 1.6276563  1736
[6008] {odor=n,                                                                                                   
        stalk.root=b}               => {habitat=d}                  0.2136878  0.9117647 0.2343673 2.3529785  1736
[6009] {odor=n,                                                                                                   
        habitat=d}                  => {ring.type=p}                0.2136878  0.9559471 0.2235352 1.9571861  1736
[6010] {ring.type=p,                                                                                              
        habitat=d}                  => {odor=n}                     0.2136878  0.8577075 0.2491384 1.9750612  1736
[6011] {odor=n,                                                                                                   
        ring.type=p}                => {habitat=d}                  0.2136878  0.7138158 0.2993599 1.8421345  1736
[6012] {odor=n,                                                                                                   
        habitat=d}                  => {population=v}               0.1132447  0.5066079 0.2235352 1.0187334   920
[6013] {odor=n,                                                                                                   
        population=v}               => {habitat=d}                  0.1132447  0.7666667 0.1477105 1.9785260   920
[6014] {odor=n,                                                                                                   
        habitat=d}                  => {class=e}                    0.2195963  0.9823789 0.2235352 1.8965888  1784
[6015] {class=e,                                                                                                  
        habitat=d}                  => {odor=n}                     0.2195963  0.9489362 0.2314131 2.1851353  1784
[6016] {class=e,                                                                                                  
        odor=n}                     => {habitat=d}                  0.2195963  0.5234742 0.4194978 1.3509226  1784
[6017] {odor=n,                                                                                                   
        habitat=d}                  => {stalk.shape=t}              0.2127031  0.9515419 0.2235352 1.6775881  1728
[6018] {stalk.shape=t,                                                                                            
        habitat=d}                  => {odor=n}                     0.2127031  0.7200000 0.2954210 1.6579592  1728
[6019] {odor=n,                                                                                                   
        stalk.shape=t}              => {habitat=d}                  0.2127031  0.6923077 0.3072378 1.7866289  1728
[6020] {odor=n,                                                                                                   
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2127031  0.9515419 0.2235352 1.5661114  1728
[6021] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {odor=n}                     0.2127031  0.7500000 0.2836041 1.7270408  1728
[6022] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {habitat=d}                  0.2127031  0.6016713 0.3535204 1.5527248  1728
[6023] {odor=n,                                                                                                   
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2186115  0.9779736 0.2235352 1.5349802  1776
[6024] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {odor=n}                     0.2186115  0.7551020 0.2895126 1.7387894  1776
[6025] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {habitat=d}                  0.2186115  0.6082192 0.3594289 1.5696228  1776
[6026] {odor=n,                                                                                                   
        habitat=d}                  => {gill.size=b}                0.2136878  0.9559471 0.2235352 1.3838408  1736
[6027] {gill.size=b,                                                                                              
        habitat=d}                  => {odor=n}                     0.2136878  0.7876588 0.2712949 1.8137585  1736
[6028] {odor=n,                                                                                                   
        gill.size=b}                => {habitat=d}                  0.2136878  0.5279805 0.4047267 1.3625521  1736
[6029] {odor=n,                                                                                                   
        habitat=d}                  => {gill.spacing=c}             0.2235352  1.0000000 0.2235352 1.1926013  1816
[6030] {gill.spacing=c,                                                                                           
        habitat=d}                  => {odor=n}                     0.2235352  0.6143437 0.3638602 1.4146622  1816
[6031] {odor=n,                                                                                                   
        gill.spacing=c}             => {habitat=d}                  0.2235352  0.7541528 0.2964057 1.9462317  1816
[6032] {odor=n,                                                                                                   
        habitat=d}                  => {ring.number=o}              0.2225505  0.9955947 0.2235352 1.0801564  1808
[6033] {ring.number=o,                                                                                            
        habitat=d}                  => {odor=n}                     0.2225505  0.5824742 0.3820778 1.3412757  1808
[6034] {odor=n,                                                                                                   
        ring.number=o}              => {habitat=d}                  0.2225505  0.6174863 0.3604136 1.5935384  1808
[6035] {odor=n,                                                                                                   
        habitat=d}                  => {gill.attachment=f}          0.2235352  1.0000000 0.2235352 1.0265353  1816
[6036] {gill.attachment=f,                                                                                        
        habitat=d}                  => {odor=n}                     0.2235352  0.5801917 0.3852782 1.3360196  1816
[6037] {odor=n,                                                                                                   
        gill.attachment=f}          => {habitat=d}                  0.2235352  0.5443645 0.4106352 1.4048339  1816
[6038] {odor=n,                                                                                                   
        habitat=d}                  => {veil.color=w}               0.2235352  1.0000000 0.2235352 1.0252398  1816
[6039] {veil.color=w,                                                                                             
        habitat=d}                  => {odor=n}                     0.2235352  0.5768742 0.3874938 1.3283804  1816
[6040] {odor=n,                                                                                                   
        veil.color=w}               => {habitat=d}                  0.2235352  0.5456731 0.4096504 1.4082110  1816
[6041] {cap.shape=x,                                                                                              
        habitat=d}                  => {stalk.root=b}               0.1627277  0.8485237 0.1917774 1.8255845  1322
[6042] {stalk.root=b,                                                                                             
        habitat=d}                  => {cap.shape=x}                0.1627277  0.5382736 0.3023141 1.1960982  1322
[6043] {cap.shape=x,                                                                                              
        stalk.root=b}               => {habitat=d}                  0.1627277  0.6842650 0.2378139 1.7658732  1322
[6044] {cap.shape=x,                                                                                              
        habitat=d}                  => {ring.type=p}                0.1361398  0.7098845 0.1917774 1.4534026  1106
[6045] {ring.type=p,                                                                                              
        habitat=d}                  => {cap.shape=x}                0.1361398  0.5464427 0.2491384 1.2142507  1106
[6046] {cap.shape=x,                                                                                              
        ring.type=p}                => {habitat=d}                  0.1361398  0.5748441 0.2368291 1.4834921  1106
[6047] {cap.shape=x,                                                                                              
        habitat=d}                  => {population=v}               0.1102905  0.5750963 0.1917774 1.1564560   896
[6048] {cap.shape=x,                                                                                              
        population=v}               => {habitat=d}                  0.1102905  0.5283019 0.2087642 1.3633814   896
[6049] {cap.shape=x,                                                                                              
        habitat=d}                  => {class=e}                    0.1154604  0.6020539 0.1917774 1.1623303   938
[6050] {cap.shape=x,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.1358936  0.7086008 0.1917774 1.2492779  1104
[6051] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {habitat=d}                  0.1358936  0.5476190 0.2481536 1.4132329  1104
[6052] {cap.shape=x,                                                                                              
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1477105  0.7702182 0.1917774 1.2676768  1200
[6053] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {cap.shape=x}                0.1477105  0.5208333 0.2836041 1.1573441  1200
[6054] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {habitat=d}                  0.1477105  0.5319149 0.2776957 1.3727054  1200
[6055] {cap.shape=x,                                                                                              
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1506647  0.7856226 0.1917774 1.2330753  1224
[6056] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {cap.shape=x}                0.1506647  0.5204082 0.2895126 1.1563993  1224
[6057] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {habitat=d}                  0.1506647  0.5151515 0.2924668 1.3294444  1224
[6058] {cap.shape=x,                                                                                              
        habitat=d}                  => {gill.size=b}                0.1346627  0.7021823 0.1917774 1.0164877  1094
[6059] {cap.shape=x,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.1740522  0.9075738 0.1917774 1.0823737  1414
[6060] {cap.shape=x,                                                                                              
        habitat=d}                  => {ring.number=o}              0.1900542  0.9910141 0.1917774 1.0751868  1544
[6061] {cap.shape=x,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.1910389  0.9961489 0.1917774 1.0225820  1552
[6062] {cap.shape=x,                                                                                              
        habitat=d}                  => {veil.color=w}               0.1917774  1.0000000 0.1917774 1.0252398  1558
[6063] {stalk.root=b,                                                                                             
        habitat=d}                  => {ring.type=p}                0.2491384  0.8241042 0.3023141 1.6872537  2024
[6064] {ring.type=p,                                                                                              
        habitat=d}                  => {stalk.root=b}               0.2491384  1.0000000 0.2491384 2.1514831  2024
[6065] {stalk.root=b,                                                                                             
        ring.type=p}                => {habitat=d}                  0.2491384  0.8322368 0.2993599 2.1477421  2024
[6066] {stalk.root=b,                                                                                             
        habitat=d}                  => {population=v}               0.1565731  0.5179153 0.3023141 1.0414713  1272
[6067] {population=v,                                                                                             
        habitat=d}                  => {stalk.root=b}               0.1565731  0.6680672 0.2343673 1.4373353  1272
[6068] {stalk.root=b,                                                                                             
        population=v}               => {habitat=d}                  0.1565731  0.6411290 0.2442147 1.6545528  1272
[6069] {stalk.root=b,                                                                                             
        habitat=d}                  => {class=e}                    0.2255047  0.7459283 0.3023141 1.4400955  1832
[6070] {class=e,                                                                                                  
        habitat=d}                  => {stalk.root=b}               0.2255047  0.9744681 0.2314131 2.0965516  1832
[6071] {class=e,                                                                                                  
        stalk.root=b}               => {habitat=d}                  0.2255047  0.9541667 0.2363368 2.4624047  1832
[6072] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {stalk.root=b}               0.1063516  0.7200000 0.1477105 1.5490678   864
[6073] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {habitat=d}                  0.1063516  0.6835443 0.1555884 1.7640133   864
[6074] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {stalk.root=b}               0.1063516  0.7012987 0.1516494 1.5088323   864
[6075] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {habitat=d}                  0.1063516  0.6585366 0.1614968 1.6994762   864
[6076] {stalk.root=b,                                                                                             
        habitat=d}                  => {stalk.shape=t}              0.2245199  0.7426710 0.3023141 1.3093445  1824
[6077] {stalk.shape=t,                                                                                            
        habitat=d}                  => {stalk.root=b}               0.2245199  0.7600000 0.2954210 1.6351271  1824
[6078] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {habitat=d}                  0.2245199  0.8636364 0.2599705 2.2287744  1824
[6079] {stalk.root=b,                                                                                             
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2481536  0.8208469 0.3023141 1.3510049  2016
[6080] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {stalk.root=b}               0.2481536  0.8750000 0.2836041 1.8825477  2016
[6081] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {habitat=d}                  0.2481536  0.8780488 0.2826194 2.2659683  2016
[6082] {stalk.root=b,                                                                                             
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2481536  0.8208469 0.3023141 1.2883617  2016
[6083] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {stalk.root=b}               0.2481536  0.8571429 0.2895126 1.8441283  2016
[6084] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {habitat=d}                  0.2481536  0.8780488 0.2826194 2.2659683  2016
[6085] {stalk.root=b,                                                                                             
        habitat=d}                  => {gill.size=b}                0.2668636  0.8827362 0.3023141 1.2778597  2168
[6086] {gill.size=b,                                                                                              
        habitat=d}                  => {stalk.root=b}               0.2668636  0.9836661 0.2712949 2.1163409  2168
[6087] {gill.size=b,                                                                                              
        stalk.root=b}               => {habitat=d}                  0.2668636  0.6317016 0.4224520 1.6302237  2168
[6088] {stalk.root=b,                                                                                             
        habitat=d}                  => {gill.spacing=c}             0.2786805  0.9218241 0.3023141 1.0993686  2264
[6089] {gill.spacing=c,                                                                                           
        habitat=d}                  => {stalk.root=b}               0.2786805  0.7658999 0.3638602 1.6478206  2264
[6090] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {habitat=d}                  0.2786805  0.6417234 0.4342688 1.6560866  2264
[6091] {stalk.root=b,                                                                                             
        habitat=d}                  => {ring.number=o}              0.3013294  0.9967427 0.3023141 1.0814019  2448
[6092] {ring.number=o,                                                                                            
        habitat=d}                  => {stalk.root=b}               0.3013294  0.7886598 0.3820778 1.6967882  2448
[6093] {stalk.root=b,                                                                                             
        ring.number=o}              => {habitat=d}                  0.3013294  0.6695842 0.4500246 1.7279868  2448
[6094] {stalk.root=b,                                                                                             
        habitat=d}                  => {gill.attachment=f}          0.3023141  1.0000000 0.3023141 1.0265353  2456
[6095] {gill.attachment=f,                                                                                        
        habitat=d}                  => {stalk.root=b}               0.3023141  0.7846645 0.3852782 1.6881925  2456
[6096] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {habitat=d}                  0.3023141  0.6504237 0.4647957 1.6785395  2456
[6097] {stalk.root=b,                                                                                             
        habitat=d}                  => {veil.color=w}               0.3023141  1.0000000 0.3023141 1.0252398  2456
[6098] {veil.color=w,                                                                                             
        habitat=d}                  => {stalk.root=b}               0.3023141  0.7801779 0.3874938 1.6785395  2456
[6099] {stalk.root=b,                                                                                             
        veil.color=w}               => {habitat=d}                  0.3023141  0.6504237 0.4647957 1.6785395  2456
[6100] {class=p,                                                                                                  
        habitat=d}                  => {population=v}               0.1132447  0.7255521 0.1560807 1.4590062   920
[6101] {class=p,                                                                                                  
        habitat=d}                  => {bruises=f}                  0.1560807  1.0000000 0.1560807 1.7110362  1268
[6102] {bruises=f,                                                                                                
        habitat=d}                  => {class=p}                    0.1560807  0.9577039 0.1629739 1.9868199  1268
[6103] {class=p,                                                                                                  
        habitat=d}                  => {gill.spacing=c}             0.1442639  0.9242902 0.1560807 1.1023097  1172
[6104] {class=p,                                                                                                  
        habitat=d}                  => {ring.number=o}              0.1516494  0.9716088 0.1560807 1.0541333  1232
[6105] {class=p,                                                                                                  
        habitat=d}                  => {gill.attachment=f}          0.1538651  0.9858044 0.1560807 1.0119630  1250
[6106] {class=p,                                                                                                  
        habitat=d}                  => {veil.color=w}               0.1560807  1.0000000 0.1560807 1.0252398  1268
[6107] {ring.type=p,                                                                                              
        habitat=d}                  => {population=v}               0.1299852  0.5217391 0.2491384 1.0491606  1056
[6108] {population=v,                                                                                             
        habitat=d}                  => {ring.type=p}                0.1299852  0.5546218 0.2343673 1.1355211  1056
[6109] {ring.type=p,                                                                                              
        population=v}               => {habitat=d}                  0.1299852  0.6769231 0.1920236 1.7469260  1056
[6110] {ring.type=p,                                                                                              
        habitat=d}                  => {class=e}                    0.2255047  0.9051383 0.2491384 1.7474677  1832
[6111] {class=e,                                                                                                  
        habitat=d}                  => {ring.type=p}                0.2255047  0.9744681 0.2314131 1.9951055  1832
[6112] {class=e,                                                                                                  
        ring.type=p}                => {habitat=d}                  0.2255047  0.5812183 0.3879862 1.4999420  1832
[6113] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {ring.type=p}                0.1063516  0.7200000 0.1477105 1.4741129   864
[6114] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {ring.type=p}                0.1063516  0.7012987 0.1516494 1.4358243   864
[6115] {ring.type=p,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.2245199  0.9011858 0.2491384 1.5888093  1824
[6116] {stalk.shape=t,                                                                                            
        habitat=d}                  => {ring.type=p}                0.2245199  0.7600000 0.2954210 1.5560081  1824
[6117] {stalk.shape=t,                                                                                            
        ring.type=p}                => {habitat=d}                  0.2245199  0.8636364 0.2599705 2.2287744  1824
[6118] {ring.type=p,                                                                                              
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2481536  0.9960474 0.2491384 1.6393617  2016
[6119] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {ring.type=p}                0.2481536  0.8750000 0.2836041 1.7914567  2016
[6120] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {habitat=d}                  0.2481536  0.5806452 0.4273757 1.4984629  2016
[6121] {ring.type=p,                                                                                              
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2481536  0.9960474 0.2491384 1.5633480  2016
[6122] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {ring.type=p}                0.2481536  0.8571429 0.2895126 1.7548963  2016
[6123] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {habitat=d}                  0.2481536  0.5502183 0.4510094 1.4199409  2016
[6124] {ring.type=p,                                                                                              
        habitat=d}                  => {gill.size=b}                0.2136878  0.8577075 0.2491384 1.2416279  1736
[6125] {gill.size=b,                                                                                              
        habitat=d}                  => {ring.type=p}                0.2136878  0.7876588 0.2712949 1.6126361  1736
[6126] {gill.size=b,                                                                                              
        ring.type=p}                => {habitat=d}                  0.2136878  0.5228916 0.4086657 1.3494190  1736
[6127] {ring.type=p,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.2255047  0.9051383 0.2491384 1.0794692  1832
[6128] {gill.spacing=c,                                                                                           
        habitat=d}                  => {ring.type=p}                0.2255047  0.6197564 0.3638602 1.2688763  1832
[6129] {gill.spacing=c,                                                                                           
        ring.type=p}                => {habitat=d}                  0.2255047  0.5264368 0.4283604 1.3585681  1832
[6130] {ring.type=p,                                                                                              
        habitat=d}                  => {ring.number=o}              0.2481536  0.9960474 0.2491384 1.0806476  2016
[6131] {ring.number=o,                                                                                            
        habitat=d}                  => {ring.type=p}                0.2481536  0.6494845 0.3820778 1.3297410  2016
[6132] {ring.number=o,                                                                                            
        ring.type=p}                => {habitat=d}                  0.2481536  0.5662921 0.4382078 1.4614223  2016
[6133] {ring.type=p,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.2491384  1.0000000 0.2491384 1.0265353  2024
[6134] {gill.attachment=f,                                                                                        
        habitat=d}                  => {ring.type=p}                0.2491384  0.6466454 0.3852782 1.3239282  2024
[6135] {gill.attachment=f,                                                                                        
        ring.type=p}                => {habitat=d}                  0.2491384  0.5360169 0.4647957 1.3832915  2024
[6136] {ring.type=p,                                                                                              
        habitat=d}                  => {veil.color=w}               0.2491384  1.0000000 0.2491384 1.0252398  2024
[6137] {veil.color=w,                                                                                             
        habitat=d}                  => {ring.type=p}                0.2491384  0.6429479 0.3874938 1.3163581  2024
[6138] {veil.color=w,                                                                                             
        ring.type=p}                => {habitat=d}                  0.2491384  0.5360169 0.4647957 1.3832915  2024
[6139] {population=v,                                                                                             
        habitat=d}                  => {class=e}                    0.1211226  0.5168067 0.2343673 0.9977514   984
[6140] {class=e,                                                                                                  
        habitat=d}                  => {population=v}               0.1211226  0.5234043 0.2314131 1.0525090   984
[6141] {class=e,                                                                                                  
        population=v}               => {habitat=d}                  0.1211226  0.8255034 0.1467258 2.1303651   984
[6142] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {population=v}               0.1014279  0.6688312 0.1516494 1.3449466   824
[6143] {population=v,                                                                                             
        habitat=d}                  => {stalk.shape=t}              0.1890694  0.8067227 0.2343673 1.4222689  1536
[6144] {stalk.shape=t,                                                                                            
        habitat=d}                  => {population=v}               0.1890694  0.6400000 0.2954210 1.2869703  1536
[6145] {stalk.shape=t,                                                                                            
        population=v}               => {habitat=d}                  0.1890694  0.5423729 0.3485968 1.3996942  1536
[6146] {bruises=f,                                                                                                
        habitat=d}                  => {population=v}               0.1161989  0.7129909 0.1629739 1.4337471   944
[6147] {population=v,                                                                                             
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1654357  0.7058824 0.2343673 1.1617885  1344
[6148] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {population=v}               0.1654357  0.5833333 0.2836041 1.1730198  1344
[6149] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {habitat=d}                  0.1654357  0.5656566 0.2924668 1.4597821  1344
[6150] {population=v,                                                                                             
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1683900  0.7184874 0.2343673 1.1277032  1368
[6151] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {population=v}               0.1683900  0.5816327 0.2895126 1.1695999  1368
[6152] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {habitat=d}                  0.1683900  0.5700000 0.2954210 1.4709911  1368
[6153] {population=v,                                                                                             
        habitat=d}                  => {gill.size=b}                0.1329394  0.5672269 0.2343673 0.8211246  1080
[6154] {gill.size=b,                                                                                              
        population=v}               => {habitat=d}                  0.1329394  0.5869565 0.2264894 1.5147506  1080
[6155] {population=v,                                                                                             
        habitat=d}                  => {gill.spacing=c}             0.2166420  0.9243697 0.2343673 1.1024046  1760
[6156] {gill.spacing=c,                                                                                           
        habitat=d}                  => {population=v}               0.2166420  0.5953992 0.3638602 1.1972829  1760
[6157] {population=v,                                                                                             
        habitat=d}                  => {ring.number=o}              0.2343673  1.0000000 0.2343673 1.0849359  1904
[6158] {ring.number=o,                                                                                            
        habitat=d}                  => {population=v}               0.2343673  0.6134021 0.3820778 1.2334847  1904
[6159] {population=v,                                                                                             
        habitat=d}                  => {gill.attachment=f}          0.2343673  1.0000000 0.2343673 1.0265353  1904
[6160] {gill.attachment=f,                                                                                        
        habitat=d}                  => {population=v}               0.2343673  0.6083067 0.3852782 1.2232385  1904
[6161] {population=v,                                                                                             
        habitat=d}                  => {veil.color=w}               0.2343673  1.0000000 0.2343673 1.0252398  1904
[6162] {veil.color=w,                                                                                             
        habitat=d}                  => {population=v}               0.2343673  0.6048285 0.3874938 1.2162442  1904
[6163] {class=e,                                                                                                  
        habitat=d}                  => {stalk.shape=t}              0.2245199  0.9702128 0.2314131 1.7105053  1824
[6164] {stalk.shape=t,                                                                                            
        habitat=d}                  => {class=e}                    0.2245199  0.7600000 0.2954210 1.4672624  1824
[6165] {class=e,                                                                                                  
        stalk.shape=t}              => {habitat=d}                  0.2245199  0.7037037 0.3190547 1.8160384  1824
[6166] {class=e,                                                                                                  
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2245199  0.9702128 0.2314131 1.5968413  1824
[6167] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {class=e}                    0.2245199  0.7916667 0.2836041 1.5283983  1824
[6168] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {habitat=d}                  0.2245199  0.5364706 0.4185130 1.3844622  1824
[6169] {class=e,                                                                                                  
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2304284  0.9957447 0.2314131 1.5628728  1872
[6170] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {class=e}                    0.2304284  0.7959184 0.2895126 1.5366067  1872
[6171] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {habitat=d}                  0.2304284  0.5142857 0.4480551 1.3272100  1872
[6172] {class=e,                                                                                                  
        habitat=d}                  => {gill.size=b}                0.2136878  0.9234043 0.2314131 1.3367313  1736
[6173] {gill.size=b,                                                                                              
        habitat=d}                  => {class=e}                    0.2136878  0.7876588 0.2712949 1.5206607  1736
[6174] {class=e,                                                                                                  
        habitat=d}                  => {gill.spacing=c}             0.2195963  0.9489362 0.2314131 1.1317025  1784
[6175] {gill.spacing=c,                                                                                           
        habitat=d}                  => {class=e}                    0.2195963  0.6035183 0.3638602 1.1651574  1784
[6176] {class=e,                                                                                                  
        gill.spacing=c}             => {habitat=d}                  0.2195963  0.5930851 0.3702610 1.5305665  1784
[6177] {class=e,                                                                                                  
        habitat=d}                  => {ring.number=o}              0.2304284  0.9957447 0.2314131 1.0803191  1872
[6178] {ring.number=o,                                                                                            
        habitat=d}                  => {class=e}                    0.2304284  0.6030928 0.3820778 1.1643360  1872
[6179] {class=e,                                                                                                  
        ring.number=o}              => {habitat=d}                  0.2304284  0.5086957 0.4529788 1.3127838  1872
[6180] {class=e,                                                                                                  
        habitat=d}                  => {gill.attachment=f}          0.2314131  1.0000000 0.2314131 1.0265353  1880
[6181] {gill.attachment=f,                                                                                        
        habitat=d}                  => {class=e}                    0.2314131  0.6006390 0.3852782 1.1595986  1880
[6182] {class=e,                                                                                                  
        habitat=d}                  => {veil.color=w}               0.2314131  1.0000000 0.2314131 1.0252398  1880
[6183] {veil.color=w,                                                                                             
        habitat=d}                  => {class=e}                    0.2314131  0.5972046 0.3874938 1.1529681  1880
[6184] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {stalk.shape=t}              0.1181684  0.8000000 0.1477105 1.4104167   960
[6185] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  0.8400000 0.1477105 1.3825284  1008
[6186] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1299852  0.8800000 0.1477105 1.3812056  1056
[6187] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {gill.spacing=c}             0.1240768  0.8400000 0.1477105 1.0017851  1008
[6188] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {ring.number=o}              0.1477105  1.0000000 0.1477105 1.0849359  1200
[6189] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {gill.attachment=f}          0.1477105  1.0000000 0.1477105 1.0265353  1200
[6190] {stalk.color.below.ring=w,                                                                                 
        habitat=d}                  => {veil.color=w}               0.1477105  1.0000000 0.1477105 1.0252398  1200
[6191] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {stalk.shape=t}              0.1181684  0.7792208 0.1516494 1.3737825   960
[6192] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {stalk.surface.below.ring=s} 0.1240768  0.8181818 0.1516494 1.3466185  1008
[6193] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {stalk.surface.above.ring=s} 0.1299852  0.8571429 0.1516494 1.3453301  1056
[6194] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {gill.spacing=c}             0.1280158  0.8441558 0.1516494 1.0067414  1040
[6195] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {ring.number=o}              0.1516494  1.0000000 0.1516494 1.0849359  1232
[6196] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {gill.attachment=f}          0.1516494  1.0000000 0.1516494 1.0265353  1232
[6197] {stalk.color.above.ring=w,                                                                                 
        habitat=d}                  => {veil.color=w}               0.1516494  1.0000000 0.1516494 1.0252398  1232
[6198] {stalk.shape=t,                                                                                            
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2599705  0.8800000 0.2954210 1.4483630  2112
[6199] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {stalk.shape=t}              0.2599705  0.9166667 0.2836041 1.6161024  2112
[6200] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {habitat=d}                  0.2599705  0.6567164 0.3958641 1.6947790  2112
[6201] {stalk.shape=t,                                                                                            
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2599705  0.8800000 0.2954210 1.3812056  2112
[6202] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {stalk.shape=t}              0.2599705  0.8979592 0.2895126 1.5831207  2112
[6203] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {habitat=d}                  0.2599705  0.6567164 0.3958641 1.6947790  2112
[6204] {stalk.shape=t,                                                                                            
        habitat=d}                  => {gill.size=b}                0.2127031  0.7200000 0.2954210 1.0422808  1728
[6205] {gill.size=b,                                                                                              
        habitat=d}                  => {stalk.shape=t}              0.2127031  0.7840290 0.2712949 1.3822595  1728
[6206] {gill.size=b,                                                                                              
        stalk.shape=t}              => {habitat=d}                  0.2127031  0.6206897 0.3426883 1.6018052  1728
[6207] {stalk.shape=t,                                                                                            
        habitat=d}                  => {gill.spacing=c}             0.2836041  0.9600000 0.2954210 1.1448972  2304
[6208] {gill.spacing=c,                                                                                           
        habitat=d}                  => {stalk.shape=t}              0.2836041  0.7794317 0.3638602 1.3741543  2304
[6209] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {habitat=d}                  0.2836041  0.6153846 0.4608567 1.5881146  2304
[6210] {stalk.shape=t,                                                                                            
        habitat=d}                  => {ring.number=o}              0.2954210  1.0000000 0.2954210 1.0849359  2400
[6211] {ring.number=o,                                                                                            
        habitat=d}                  => {stalk.shape=t}              0.2954210  0.7731959 0.3820778 1.3631604  2400
[6212] {stalk.shape=t,                                                                                            
        ring.number=o}              => {habitat=d}                  0.2954210  0.5208333 0.5672083 1.3441074  2400
[6213] {stalk.shape=t,                                                                                            
        habitat=d}                  => {gill.attachment=f}          0.2954210  1.0000000 0.2954210 1.0265353  2400
[6214] {gill.attachment=f,                                                                                        
        habitat=d}                  => {stalk.shape=t}              0.2954210  0.7667732 0.3852782 1.3518371  2400
[6215] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {habitat=d}                  0.2954210  0.5208333 0.5672083 1.3441074  2400
[6216] {stalk.shape=t,                                                                                            
        habitat=d}                  => {veil.color=w}               0.2954210  1.0000000 0.2954210 1.0252398  2400
[6217] {veil.color=w,                                                                                             
        habitat=d}                  => {stalk.shape=t}              0.2954210  0.7623888 0.3874938 1.3441074  2400
[6218] {stalk.shape=t,                                                                                            
        veil.color=w}               => {habitat=d}                  0.2954210  0.5208333 0.5672083 1.3441074  2400
[6219] {bruises=f,                                                                                                
        habitat=d}                  => {gill.spacing=c}             0.1511571  0.9274924 0.1629739 1.1061287  1228
[6220] {bruises=f,                                                                                                
        habitat=d}                  => {ring.number=o}              0.1575579  0.9667674 0.1629739 1.0488806  1280
[6221] {bruises=f,                                                                                                
        habitat=d}                  => {gill.attachment=f}          0.1607582  0.9864048 0.1629739 1.0125793  1306
[6222] {bruises=f,                                                                                                
        habitat=d}                  => {veil.color=w}               0.1629739  1.0000000 0.1629739 1.0252398  1324
[6223] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2658789  0.9375000 0.2836041 1.4714548  2160
[6224] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2658789  0.9183673 0.2895126 1.5115106  2160
[6225] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {habitat=d}                  0.2658789  0.5197305 0.5115707 1.3412613  2160
[6226] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {gill.size=b}                0.2127031  0.7500000 0.2836041 1.0857092  1728
[6227] {gill.size=b,                                                                                              
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2127031  0.7840290 0.2712949 1.2904076  1728
[6228] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {habitat=d}                  0.2127031  0.5082353 0.4185130 1.3115958  1728
[6229] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {gill.spacing=c}             0.2599705  0.9166667 0.2836041 1.0932179  2112
[6230] {gill.spacing=c,                                                                                           
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2599705  0.7144790 0.3638602 1.1759375  2112
[6231] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {habitat=d}                  0.2599705  0.5047801 0.5150172 1.3026791  2112
[6232] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {ring.number=o}              0.2836041  1.0000000 0.2836041 1.0849359  2304
[6233] {ring.number=o,                                                                                            
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2836041  0.7422680 0.3820778 1.2216745  2304
[6234] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {habitat=d}                  0.2836041  0.5124555 0.5534220 1.3224869  2304
[6235] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {gill.attachment=f}          0.2836041  1.0000000 0.2836041 1.0265353  2304
[6236] {gill.attachment=f,                                                                                        
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2836041  0.7361022 0.3852782 1.2115265  2304
[6237] {stalk.surface.below.ring=s,                                                                               
        habitat=d}                  => {veil.color=w}               0.2836041  1.0000000 0.2836041 1.0252398  2304
[6238] {veil.color=w,                                                                                             
        habitat=d}                  => {stalk.surface.below.ring=s} 0.2836041  0.7318933 0.3874938 1.2045990  2304
[6239] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {gill.size=b}                0.2127031  0.7346939 0.2895126 1.0635519  1728
[6240] {gill.size=b,                                                                                              
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2127031  0.7840290 0.2712949 1.2305742  1728
[6241] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {gill.spacing=c}             0.2658789  0.9183673 0.2895126 1.0952461  2160
[6242] {gill.spacing=c,                                                                                           
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2658789  0.7307172 0.3638602 1.1468985  2160
[6243] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {ring.number=o}              0.2895126  1.0000000 0.2895126 1.0849359  2352
[6244] {ring.number=o,                                                                                            
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2895126  0.7577320 0.3820778 1.1892995  2352
[6245] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {gill.attachment=f}          0.2895126  1.0000000 0.2895126 1.0265353  2352
[6246] {gill.attachment=f,                                                                                        
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2895126  0.7514377 0.3852782 1.1794204  2352
[6247] {stalk.surface.above.ring=s,                                                                               
        habitat=d}                  => {veil.color=w}               0.2895126  1.0000000 0.2895126 1.0252398  2352
[6248] {veil.color=w,                                                                                             
        habitat=d}                  => {stalk.surface.above.ring=s} 0.2895126  0.7471410 0.3874938 1.1726766  2352
[6249] {gill.size=b,                                                                                              
        habitat=d}                  => {gill.spacing=c}             0.2712949  1.0000000 0.2712949 1.1926013  2204
[6250] {gill.spacing=c,                                                                                           
        habitat=d}                  => {gill.size=b}                0.2712949  0.7456022 0.3638602 1.0793428  2204
[6251] {gill.size=b,                                                                                              
        habitat=d}                  => {ring.number=o}              0.2658789  0.9800363 0.2712949 1.0632766  2160
[6252] {ring.number=o,                                                                                            
        habitat=d}                  => {gill.size=b}                0.2658789  0.6958763 0.3820778 1.0073590  2160
[6253] {gill.size=b,                                                                                              
        habitat=d}                  => {gill.attachment=f}          0.2690793  0.9918330 0.2712949 1.0181516  2186
[6254] {gill.attachment=f,                                                                                        
        habitat=d}                  => {gill.size=b}                0.2690793  0.6984026 0.3852782 1.0110161  2186
[6255] {gill.size=b,                                                                                              
        habitat=d}                  => {veil.color=w}               0.2712949  1.0000000 0.2712949 1.0252398  2204
[6256] {veil.color=w,                                                                                             
        habitat=d}                  => {gill.size=b}                0.2712949  0.7001271 0.3874938 1.0135125  2204
[6257] {gill.spacing=c,                                                                                           
        habitat=d}                  => {ring.number=o}              0.3584441  0.9851150 0.3638602 1.0687866  2912
[6258] {ring.number=o,                                                                                            
        habitat=d}                  => {gill.spacing=c}             0.3584441  0.9381443 0.3820778 1.1188321  2912
[6259] {gill.spacing=c,                                                                                           
        habitat=d}                  => {gill.attachment=f}          0.3616445  0.9939107 0.3638602 1.0202844  2938
[6260] {gill.attachment=f,                                                                                        
        habitat=d}                  => {gill.spacing=c}             0.3616445  0.9386581 0.3852782 1.1194449  2938
[6261] {gill.spacing=c,                                                                                           
        habitat=d}                  => {veil.color=w}               0.3638602  1.0000000 0.3638602 1.0252398  2956
[6262] {veil.color=w,                                                                                             
        habitat=d}                  => {gill.spacing=c}             0.3638602  0.9390089 0.3874938 1.1198632  2956
[6263] {ring.number=o,                                                                                            
        habitat=d}                  => {gill.attachment=f}          0.3820778  1.0000000 0.3820778 1.0265353  3104
[6264] {gill.attachment=f,                                                                                        
        habitat=d}                  => {ring.number=o}              0.3820778  0.9916933 0.3852782 1.0759237  3104
[6265] {ring.number=o,                                                                                            
        habitat=d}                  => {veil.color=w}               0.3820778  1.0000000 0.3820778 1.0252398  3104
[6266] {veil.color=w,                                                                                             
        habitat=d}                  => {ring.number=o}              0.3820778  0.9860229 0.3874938 1.0697716  3104
[6267] {gill.attachment=f,                                                                                        
        habitat=d}                  => {veil.color=w}               0.3852782  1.0000000 0.3852782 1.0252398  3130
[6268] {veil.color=w,                                                                                             
        habitat=d}                  => {gill.attachment=f}          0.3852782  0.9942821 0.3874938 1.0206656  3130
[6269] {cap.shape=f,                                                                                              
        cap.surface=y}              => {stalk.surface.above.ring=s} 0.1013048  0.6258555 0.1618661 0.9823126   823
[6270] {cap.shape=f,                                                                                              
        cap.surface=y}              => {gill.size=b}                0.1137371  0.7026616 0.1618661 1.0171815   924
[6271] {cap.shape=f,                                                                                              
        cap.surface=y}              => {gill.spacing=c}             0.1605121  0.9916350 0.1618661 1.1826252  1304
[6272] {cap.shape=f,                                                                                              
        cap.surface=y}              => {ring.number=o}              0.1530034  0.9452471 0.1618661 1.0255326  1243
[6273] {cap.shape=f,                                                                                              
        cap.surface=y}              => {gill.attachment=f}          0.1611275  0.9954373 0.1618661 1.0218514  1309
[6274] {cap.shape=f,                                                                                              
        cap.surface=y}              => {veil.color=w}               0.1616199  0.9984791 0.1618661 1.0236805  1313
[6275] {cap.shape=f,                                                                                              
        bruises=t}                  => {odor=n}                     0.1208764  0.7024320 0.1720827 1.6175051   982
[6276] {cap.shape=f,                                                                                              
        odor=n}                     => {bruises=t}                  0.1208764  0.6546667 0.1846381 1.5753886   982
[6277] {cap.shape=f,                                                                                              
        bruises=t}                  => {stalk.root=b}               0.1366322  0.7939914 0.1720827 1.7082591  1110
[6278] {cap.shape=f,                                                                                              
        stalk.root=b}               => {bruises=t}                  0.1366322  0.6242970 0.2188577 1.5023070  1110
[6279] {cap.shape=f,                                                                                              
        bruises=t}                  => {ring.type=p}                0.1642048  0.9542203 0.1720827 1.9536507  1334
[6280] {cap.shape=f,                                                                                              
        ring.type=p}                => {bruises=t}                  0.1642048  0.9407616 0.1745446 2.2638470  1334
[6281] {cap.shape=f,                                                                                              
        bruises=t}                  => {class=e}                    0.1339242  0.7782546 0.1720827 1.5025049  1088
[6282] {class=e,                                                                                                  
        cap.shape=f}                => {bruises=t}                  0.1339242  0.6817043 0.1964549 1.6404518  1088
[6283] {cap.shape=f,                                                                                              
        bruises=t}                  => {stalk.shape=t}              0.1299852  0.7553648 0.1720827 1.3317239  1056
[6284] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {bruises=t}                  0.1299852  0.5238095 0.2481536 1.2604942  1056
[6285] {bruises=t,                                                                                                
        stalk.shape=t}              => {cap.shape=f}                0.1299852  0.5000000 0.2599705 1.2887056  1056
[6286] {cap.shape=f,                                                                                              
        bruises=t}                  => {stalk.surface.below.ring=s} 0.1514032  0.8798283 0.1720827 1.4480805  1230
[6287] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {bruises=t}                  0.1514032  0.6840934 0.2213195 1.6462012  1230
[6288] {cap.shape=f,                                                                                              
        bruises=t}                  => {stalk.surface.above.ring=s} 0.1632201  0.9484979 0.1720827 1.4887165  1326
[6289] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {bruises=t}                  0.1632201  0.6913452 0.2360906 1.6636517  1326
[6290] {cap.shape=f,                                                                                              
        bruises=t}                  => {gill.size=b}                0.1501723  0.8726753 0.1720827 1.2632954  1220
[6291] {cap.shape=f,                                                                                              
        gill.size=b}                => {bruises=t}                  0.1501723  0.5267703 0.2850812 1.2676190  1220
[6292] {cap.shape=f,                                                                                              
        bruises=t}                  => {gill.spacing=c}             0.1659281  0.9642346 0.1720827 1.1499475  1348
[6293] {cap.shape=f,                                                                                              
        bruises=t}                  => {ring.number=o}              0.1578040  0.9170243 0.1720827 0.9949126  1282
[6294] {cap.shape=f,                                                                                              
        bruises=t}                  => {gill.attachment=f}          0.1720827  1.0000000 0.1720827 1.0265353  1398
[6295] {cap.shape=f,                                                                                              
        bruises=t}                  => {veil.color=w}               0.1720827  1.0000000 0.1720827 1.0252398  1398
[6296] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {class=p}                    0.1029050  0.7359155 0.1398326 1.5267052   836
[6297] {class=p,                                                                                                  
        cap.shape=f}                => {stalk.shape=e}              0.1029050  0.5372751 0.1915313 1.2414171   836
[6298] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {gill.size=b}                0.1137371  0.8133803 0.1398326 1.1774593   924
[6299] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {gill.spacing=c}             0.1373708  0.9823944 0.1398326 1.1716048  1116
[6300] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {ring.number=o}              0.1235844  0.8838028 0.1398326 0.9588694  1004
[6301] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {gill.attachment=f}          0.1331856  0.9524648 0.1398326 0.9777387  1082
[6302] {cap.shape=f,                                                                                              
        stalk.shape=e}              => {veil.color=w}               0.1336780  0.9559859 0.1398326 0.9801148  1086
[6303] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.root=b}               0.1154604  0.6253333 0.1846381 1.3453941   938
[6304] {cap.shape=f,                                                                                              
        stalk.root=b}               => {odor=n}                     0.1154604  0.5275591 0.2188577 1.2148214   938
[6305] {cap.shape=f,                                                                                              
        odor=n}                     => {ring.type=p}                0.1233383  0.6680000 0.1846381 1.3676492  1002
[6306] {cap.shape=f,                                                                                              
        ring.type=p}                => {odor=n}                     0.1233383  0.7066291 0.1745446 1.6271696  1002
[6307] {cap.shape=f,                                                                                              
        odor=n}                     => {class=e}                    0.1787297  0.9680000 0.1846381 1.8688289  1452
[6308] {class=e,                                                                                                  
        cap.shape=f}                => {odor=n}                     0.1787297  0.9097744 0.1964549 2.0949568  1452
[6309] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.color.below.ring=w}   0.1001969  0.5426667 0.1846381 1.0056168   814
[6310] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {odor=n}                     0.1001969  0.5362319 0.1868538 1.2347925   814
[6311] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.color.above.ring=w}   0.1031512  0.5586667 0.1846381 1.0167133   838
[6312] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {odor=n}                     0.1031512  0.5434501 0.1898080 1.2514139   838
[6313] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.shape=t}              0.1536189  0.8320000 0.1846381 1.4668333  1248
[6314] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {odor=n}                     0.1536189  0.6190476 0.2481536 1.4254940  1248
[6315] {odor=n,                                                                                                   
        stalk.shape=t}              => {cap.shape=f}                0.1536189  0.5000000 0.3072378 1.2887056  1248
[6316] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.surface.below.ring=s} 0.1553422  0.8413333 0.1846381 1.3847229  1262
[6317] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {odor=n}                     0.1553422  0.7018910 0.2213195 1.6162592  1262
[6318] {cap.shape=f,                                                                                              
        odor=n}                     => {stalk.surface.above.ring=s} 0.1582964  0.8573333 0.1846381 1.3456291  1286
[6319] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {odor=n}                     0.1582964  0.6704901 0.2360906 1.5439517  1286
[6320] {cap.shape=f,                                                                                              
        odor=n}                     => {gill.size=b}                0.1742984  0.9440000 0.1846381 1.3665460  1416
[6321] {cap.shape=f,                                                                                              
        gill.size=b}                => {odor=n}                     0.1742984  0.6113990 0.2850812 1.4078813  1416
[6322] {cap.shape=f,                                                                                              
        odor=n}                     => {gill.spacing=c}             0.1349089  0.7306667 0.1846381 0.8713940  1096
[6323] {cap.shape=f,                                                                                              
        odor=n}                     => {ring.number=o}              0.1698671  0.9200000 0.1846381 0.9981410  1380
[6324] {cap.shape=f,                                                                                              
        odor=n}                     => {gill.attachment=f}          0.1787297  0.9680000 0.1846381 0.9936861  1452
[6325] {cap.shape=f,                                                                                              
        odor=n}                     => {veil.color=w}               0.1784835  0.9666667 0.1846381 0.9910651  1450
[6326] {class=p,                                                                                                  
        cap.shape=f}                => {stalk.root=b}               0.1021664  0.5334190 0.1915313 1.1476420   830
[6327] {cap.shape=f,                                                                                              
        stalk.root=b}               => {ring.type=p}                0.1371246  0.6265467 0.2188577 1.2827785  1114
[6328] {cap.shape=f,                                                                                              
        ring.type=p}                => {stalk.root=b}               0.1371246  0.7856135 0.1745446 1.6902342  1114
[6329] {cap.shape=f,                                                                                              
        stalk.root=b}               => {population=v}               0.1152142  0.5264342 0.2188577 1.0586018   936
[6330] {cap.shape=f,                                                                                              
        population=v}               => {stalk.root=b}               0.1152142  0.5721271 0.2013786 1.2309218   936
[6331] {cap.shape=f,                                                                                              
        stalk.root=b}               => {class=e}                    0.1166913  0.5331834 0.2188577 1.0293682   948
[6332] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.root=b}               0.1166913  0.5939850 0.1964549 1.2779486   948
[6333] {cap.shape=f,                                                                                              
        stalk.root=b}               => {stalk.shape=t}              0.1299852  0.5939258 0.2188577 1.0471035  1056
[6334] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {stalk.root=b}               0.1299852  0.5238095 0.2481536 1.1269673  1056
[6335] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {cap.shape=f}                0.1299852  0.5000000 0.2599705 1.2887056  1056
[6336] {cap.shape=f,                                                                                              
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.1287543  0.5883015 0.2188577 0.9682660  1046
[6337] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {stalk.root=b}               0.1287543  0.5817575 0.2213195 1.2516414  1046
[6338] {cap.shape=f,                                                                                              
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.1287543  0.5883015 0.2188577 0.9233696  1046
[6339] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {stalk.root=b}               0.1287543  0.5453597 0.2360906 1.1733323  1046
[6340] {cap.shape=f,                                                                                              
        stalk.root=b}               => {gill.size=b}                0.2107336  0.9628796 0.2188577 1.3938764  1712
[6341] {cap.shape=f,                                                                                              
        gill.size=b}                => {stalk.root=b}               0.2107336  0.7392055 0.2850812 1.5903882  1712
[6342] {cap.shape=f,                                                                                              
        stalk.root=b}               => {gill.spacing=c}             0.2107336  0.9628796 0.2188577 1.1483315  1712
[6343] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {stalk.root=b}               0.2107336  0.6340741 0.3323486 1.3641996  1712
[6344] {cap.shape=f,                                                                                              
        stalk.root=b}               => {ring.number=o}              0.2119645  0.9685039 0.2188577 1.0507647  1722
[6345] {cap.shape=f,                                                                                              
        ring.number=o}              => {stalk.root=b}               0.2119645  0.5701987 0.3717381 1.2267728  1722
[6346] {cap.shape=f,                                                                                              
        stalk.root=b}               => {gill.attachment=f}          0.2188577  1.0000000 0.2188577 1.0265353  1778
[6347] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {stalk.root=b}               0.2188577  0.5739187 0.3813392 1.2347763  1778
[6348] {cap.shape=f,                                                                                              
        stalk.root=b}               => {veil.color=w}               0.2188577  1.0000000 0.2188577 1.0252398  1778
[6349] {cap.shape=f,                                                                                              
        veil.color=w}               => {stalk.root=b}               0.2188577  0.5731786 0.3818316 1.2331840  1778
[6350] {class=p,                                                                                                  
        cap.shape=f}                => {population=v}               0.1329394  0.6940874 0.1915313 1.3957342  1080
[6351] {cap.shape=f,                                                                                              
        population=v}               => {class=p}                    0.1329394  0.6601467 0.2013786 1.3695178  1080
[6352] {class=p,                                                                                                  
        cap.shape=f}                => {bruises=f}                  0.1533727  0.8007712 0.1915313 1.3701485  1246
[6353] {cap.shape=f,                                                                                              
        bruises=f}                  => {class=p}                    0.1533727  0.7103763 0.2159035 1.4737224  1246
[6354] {class=p,                                                                                                  
        cap.shape=f}                => {gill.size=b}                0.1033973  0.5398458 0.1915313 0.7814873   840
[6355] {class=p,                                                                                                  
        cap.shape=f}                => {gill.spacing=c}             0.1910389  0.9974293 0.1915313 1.1895355  1552
[6356] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {class=p}                    0.1910389  0.5748148 0.3323486 1.1924912  1552
[6357] {class=p,                                                                                                  
        cap.shape=f}                => {ring.number=o}              0.1856228  0.9691517 0.1915313 1.0514674  1508
[6358] {class=p,                                                                                                  
        cap.shape=f}                => {gill.attachment=f}          0.1907927  0.9961440 0.1915313 1.0225769  1550
[6359] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {class=p}                    0.1907927  0.5003228 0.3813392 1.0379526  1550
[6360] {class=p,                                                                                                  
        cap.shape=f}                => {veil.color=w}               0.1912851  0.9987147 0.1915313 1.0239220  1554
[6361] {cap.shape=f,                                                                                              
        veil.color=w}               => {class=p}                    0.1912851  0.5009671 0.3818316 1.0392893  1554
[6362] {cap.shape=f,                                                                                              
        ring.type=p}                => {class=e}                    0.1363860  0.7813822 0.1745446 1.5085431  1108
[6363] {class=e,                                                                                                  
        cap.shape=f}                => {ring.type=p}                0.1363860  0.6942356 0.1964549 1.4213634  1108
[6364] {cap.shape=f,                                                                                              
        ring.type=p}                => {stalk.shape=t}              0.1299852  0.7447109 0.1745446 1.3129408  1056
[6365] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {ring.type=p}                0.1299852  0.5238095 0.2481536 1.0724366  1056
[6366] {stalk.shape=t,                                                                                            
        ring.type=p}                => {cap.shape=f}                0.1299852  0.5000000 0.2599705 1.2887056  1056
[6367] {cap.shape=f,                                                                                              
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1533727  0.8787024 0.1745446 1.4462274  1246
[6368] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=p}                0.1533727  0.6929922 0.2213195 1.4188177  1246
[6369] {cap.shape=f,                                                                                              
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1651896  0.9464034 0.1745446 1.4854291  1342
[6370] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=p}                0.1651896  0.6996872 0.2360906 1.4325248  1342
[6371] {cap.shape=f,                                                                                              
        ring.type=p}                => {gill.size=b}                0.1486952  0.8519041 0.1745446 1.2332268  1208
[6372] {cap.shape=f,                                                                                              
        gill.size=b}                => {ring.type=p}                0.1486952  0.5215889 0.2850812 1.0678903  1208
[6373] {cap.shape=f,                                                                                              
        ring.type=p}                => {gill.spacing=c}             0.1683900  0.9647391 0.1745446 1.1505491  1368
[6374] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {ring.type=p}                0.1683900  0.5066667 0.3323486 1.0373387  1368
[6375] {cap.shape=f,                                                                                              
        ring.type=p}                => {ring.number=o}              0.1676514  0.9605078 0.1745446 1.0420893  1362
[6376] {cap.shape=f,                                                                                              
        ring.type=p}                => {gill.attachment=f}          0.1686361  0.9661495 0.1745446 0.9917865  1370
[6377] {cap.shape=f,                                                                                              
        ring.type=p}                => {veil.color=w}               0.1686361  0.9661495 0.1745446 0.9905349  1370
[6378] {cap.shape=f,                                                                                              
        population=v}               => {stalk.shape=t}              0.1388479  0.6894866 0.2013786 1.2155792  1128
[6379] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {population=v}               0.1388479  0.5595238 0.2481536 1.1251414  1128
[6380] {cap.shape=f,                                                                                              
        population=v}               => {bruises=f}                  0.1201379  0.5965770 0.2013786 1.0207649   976
[6381] {cap.shape=f,                                                                                              
        bruises=f}                  => {population=v}               0.1201379  0.5564424 0.2159035 1.1189451   976
[6382] {cap.shape=f,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1181684  0.5867971 0.2013786 0.9657900   960
[6383] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {population=v}               0.1181684  0.5339266 0.2213195 1.0736682   960
[6384] {cap.shape=f,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1196455  0.5941320 0.2013786 0.9325210   972
[6385] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {population=v}               0.1196455  0.5067779 0.2360906 1.0190752   972
[6386] {cap.shape=f,                                                                                              
        population=v}               => {gill.size=b}                0.1102905  0.5476773 0.2013786 0.7928243   896
[6387] {cap.shape=f,                                                                                              
        population=v}               => {gill.spacing=c}             0.1935007  0.9608802 0.2013786 1.1459470  1572
[6388] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {population=v}               0.1935007  0.5822222 0.3323486 1.1707855  1572
[6389] {cap.shape=f,                                                                                              
        population=v}               => {ring.number=o}              0.1959626  0.9731051 0.2013786 1.0557567  1592
[6390] {cap.shape=f,                                                                                              
        ring.number=o}              => {population=v}               0.1959626  0.5271523 0.3717381 1.0600459  1592
[6391] {cap.shape=f,                                                                                              
        population=v}               => {gill.attachment=f}          0.1984244  0.9853301 0.2013786 1.0114761  1612
[6392] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {population=v}               0.1984244  0.5203357 0.3813392 1.0463384  1612
[6393] {cap.shape=f,                                                                                              
        population=v}               => {veil.color=w}               0.1984244  0.9853301 0.2013786 1.0101996  1612
[6394] {cap.shape=f,                                                                                              
        veil.color=w}               => {population=v}               0.1984244  0.5196647 0.3818316 1.0449892  1612
[6395] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.color.below.ring=w}   0.1132447  0.5764411 0.1964549 1.0682043   920
[6396] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {class=e}                    0.1132447  0.6060606 0.1868538 1.1700657   920
[6397] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.color.above.ring=w}   0.1152142  0.5864662 0.1964549 1.0673054   936
[6398] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {class=e}                    0.1152142  0.6070039 0.1898080 1.1718868   936
[6399] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.shape=t}              0.1595273  0.8120301 0.1964549 1.4316259  1296
[6400] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {class=e}                    0.1595273  0.6428571 0.2481536 1.2411054  1296
[6401] {class=e,                                                                                                  
        stalk.shape=t}              => {cap.shape=f}                0.1595273  0.5000000 0.3190547 1.2887056  1296
[6402] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.surface.below.ring=s} 0.1565731  0.7969925 0.1964549 1.3117437  1272
[6403] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {class=e}                    0.1565731  0.7074527 0.2213195 1.3658141  1272
[6404] {class=e,                                                                                                  
        cap.shape=f}                => {stalk.surface.above.ring=s} 0.1713442  0.8721805 0.1964549 1.3689324  1392
[6405] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {class=e}                    0.1713442  0.7257560 0.2360906 1.4011506  1392
[6406] {class=e,                                                                                                  
        cap.shape=f}                => {gill.size=b}                0.1816839  0.9248120 0.1964549 1.3387692  1476
[6407] {cap.shape=f,                                                                                              
        gill.size=b}                => {class=e}                    0.1816839  0.6373057 0.2850812 1.2303877  1476
[6408] {class=e,                                                                                                  
        cap.shape=f}                => {gill.spacing=c}             0.1413097  0.7192982 0.1964549 0.8578360  1148
[6409] {class=e,                                                                                                  
        cap.shape=f}                => {ring.number=o}              0.1861152  0.9473684 0.1964549 1.0278340  1512
[6410] {cap.shape=f,                                                                                              
        ring.number=o}              => {class=e}                    0.1861152  0.5006623 0.3717381 0.9665827  1512
[6411] {class=e,                                                                                                  
        cap.shape=f}                => {gill.attachment=f}          0.1905465  0.9699248 0.1964549 0.9956620  1548
[6412] {class=e,                                                                                                  
        cap.shape=f}                => {veil.color=w}               0.1905465  0.9699248 0.1964549 0.9944055  1548
[6413] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1435254  0.7681159 0.1868538 1.3978884  1166
[6414] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1435254  0.7561608 0.1898080 1.4012433  1166
[6415] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1418021  0.7588933 0.1868538 1.3379447  1152
[6416] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1418021  0.5714286 0.2481536 1.0589155  1152
[6417] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1218612  0.6521739 0.1868538 1.0733916   990
[6418] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1218612  0.5506118 0.2213195 1.0203399   990
[6419] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1366322  0.7312253 0.1868538 1.1476960  1110
[6420] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1366322  0.5787278 0.2360906 1.0724418  1110
[6421] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {gill.size=b}                0.1225997  0.6561265 0.1868538 0.9498167   996
[6422] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1334318  0.7140975 0.1868538 0.8516336  1084
[6423] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.1765140  0.9446640 0.1868538 1.0248999  1434
[6424] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1868538  1.0000000 0.1868538 1.0265353  1518
[6425] {cap.shape=f,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.1868538  1.0000000 0.1868538 1.0252398  1518
[6426] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1418021  0.7470817 0.1898080 1.3171206  1152
[6427] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1418021  0.5714286 0.2481536 1.0399386  1152
[6428] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1228459  0.6472114 0.1898080 1.0652240   998
[6429] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1228459  0.5550612 0.2213195 1.0101517   998
[6430] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1376169  0.7250324 0.1898080 1.1379759  1118
[6431] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1376169  0.5828989 0.2360906 1.0608132  1118
[6432] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {gill.size=b}                0.1225997  0.6459144 0.1898080 0.9350336   996
[6433] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1344165  0.7081712 0.1898080 0.8445659  1092
[6434] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.1794682  0.9455253 0.1898080 1.0258343  1458
[6435] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1898080  1.0000000 0.1898080 1.0265353  1542
[6436] {cap.shape=f,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.1898080  1.0000000 0.1898080 1.0252398  1542
[6437] {cap.shape=f,                                                                                              
        bruises=f}                  => {stalk.shape=t}              0.1181684  0.5473204 0.2159035 0.9649373   960
[6438] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1802068  0.7261905 0.2481536 1.1952130  1464
[6439] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1802068  0.8142380 0.2213195 1.4355186  1464
[6440] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1802068  0.7261905 0.2481536 1.1397936  1464
[6441] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1802068  0.7632951 0.2360906 1.3457052  1464
[6442] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {gill.size=b}                0.1713442  0.6904762 0.2481536 0.9995418  1392
[6443] {cap.shape=f,                                                                                              
        gill.size=b}                => {stalk.shape=t}              0.1713442  0.6010363 0.2850812 1.0596395  1392
[6444] {gill.size=b,                                                                                              
        stalk.shape=t}              => {cap.shape=f}                0.1713442  0.5000000 0.3426883 1.2887056  1392
[6445] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.1949778  0.7857143 0.2481536 0.9370439  1584
[6446] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {stalk.shape=t}              0.1949778  0.5866667 0.3323486 1.0343056  1584
[6447] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.2481536  1.0000000 0.2481536 1.0849359  2016
[6448] {cap.shape=f,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.2481536  0.6675497 0.3717381 1.1769040  2016
[6449] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.2481536  1.0000000 0.2481536 1.0265353  2016
[6450] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {stalk.shape=t}              0.2481536  0.6507424 0.3813392 1.1472724  2016
[6451] {cap.shape=f,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.2481536  1.0000000 0.2481536 1.0252398  2016
[6452] {cap.shape=f,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.2481536  0.6499033 0.3818316 1.1457930  2016
[6453] {cap.shape=f,                                                                                              
        bruises=f}                  => {gill.size=b}                0.1349089  0.6248575 0.2159035 0.9045513  1096
[6454] {cap.shape=f,                                                                                              
        bruises=f}                  => {gill.spacing=c}             0.1664205  0.7708096 0.2159035 0.9192685  1352
[6455] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {bruises=f}                  0.1664205  0.5007407 0.3323486 0.8567855  1352
[6456] {cap.shape=f,                                                                                              
        bruises=f}                  => {ring.number=o}              0.2139340  0.9908780 0.2159035 1.0750391  1738
[6457] {cap.shape=f,                                                                                              
        ring.number=o}              => {bruises=f}                  0.2139340  0.5754967 0.3717381 0.9846957  1738
[6458] {cap.shape=f,                                                                                              
        bruises=f}                  => {gill.attachment=f}          0.2092565  0.9692132 0.2159035 0.9949315  1700
[6459] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {bruises=f}                  0.2092565  0.5487411 0.3813392 0.9389159  1700
[6460] {cap.shape=f,                                                                                              
        bruises=f}                  => {veil.color=w}               0.2097489  0.9714937 0.2159035 0.9960140  1704
[6461] {cap.shape=f,                                                                                              
        veil.color=w}               => {bruises=f}                  0.2097489  0.5493230 0.3818316 0.9399116  1704
[6462] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1868538  0.8442714 0.2213195 1.3251277  1518
[6463] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1868538  0.7914494 0.2360906 1.3026206  1518
[6464] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {gill.size=b}                0.1590350  0.7185762 0.2213195 1.0402197  1292
[6465] {cap.shape=f,                                                                                              
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1590350  0.5578584 0.2850812 0.9181607  1292
[6466] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1905465  0.8609566 0.2213195 1.0267780  1548
[6467] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.1905465  0.5733333 0.3323486 0.9436305  1548
[6468] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.2070409  0.9354839 0.2213195 1.0149400  1682
[6469] {cap.shape=f,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.2070409  0.5569536 0.3717381 0.9166717  1682
[6470] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.2154111  0.9733037 0.2213195 0.9991305  1750
[6471] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.2154111  0.5648806 0.3813392 0.9297183  1750
[6472] {cap.shape=f,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.2154111  0.9733037 0.2213195 0.9978696  1750
[6473] {cap.shape=f,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.2154111  0.5641522 0.3818316 0.9285195  1750
[6474] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {gill.size=b}                0.1708518  0.7236705 0.2360906 1.0475943  1388
[6475] {cap.shape=f,                                                                                              
        gill.size=b}                => {stalk.surface.above.ring=s} 0.1708518  0.5993092 0.2850812 0.9406467  1388
[6476] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2053176  0.8696559 0.2360906 1.0371527  1668
[6477] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.2053176  0.6177778 0.3323486 0.9696342  1668
[6478] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.2218119  0.9395203 0.2360906 1.0193193  1802
[6479] {cap.shape=f,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.2218119  0.5966887 0.3717381 0.9365339  1802
[6480] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2301822  0.9749739 0.2360906 1.0008451  1870
[6481] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.2301822  0.6036152 0.3813392 0.9474054  1870
[6482] {cap.shape=f,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.2301822  0.9749739 0.2360906 0.9995821  1870
[6483] {cap.shape=f,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.2301822  0.6028369 0.3818316 0.9461837  1870
[6484] {cap.shape=f,                                                                                              
        gill.size=b}                => {gill.spacing=c}             0.2378139  0.8341969 0.2850812 0.9948643  1932
[6485] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {gill.size=b}                0.2378139  0.7155556 0.3323486 1.0358470  1932
[6486] {cap.shape=f,                                                                                              
        gill.size=b}                => {ring.number=o}              0.2688331  0.9430052 0.2850812 1.0231002  2184
[6487] {cap.shape=f,                                                                                              
        ring.number=o}              => {gill.size=b}                0.2688331  0.7231788 0.3717381 1.0468825  2184
[6488] {cap.shape=f,                                                                                              
        gill.size=b}                => {gill.attachment=f}          0.2784343  0.9766839 0.2850812 1.0026005  2262
[6489] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {gill.size=b}                0.2784343  0.7301485 0.3813392 1.0569719  2262
[6490] {cap.shape=f,                                                                                              
        gill.size=b}                => {veil.color=w}               0.2791728  0.9792746 0.2850812 1.0039913  2268
[6491] {cap.shape=f,                                                                                              
        veil.color=w}               => {gill.size=b}                0.2791728  0.7311412 0.3818316 1.0584090  2268
[6492] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.3161004  0.9511111 0.3323486 1.0318946  2568
[6493] {cap.shape=f,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.3161004  0.8503311 0.3717381 1.0141060  2568
[6494] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.3257016  0.9800000 0.3323486 1.0060045  2646
[6495] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.3257016  0.8540994 0.3813392 1.0186001  2646
[6496] {cap.shape=f,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.3264402  0.9822222 0.3323486 1.0070133  2652
[6497] {cap.shape=f,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.3264402  0.8549323 0.3818316 1.0195934  2652
[6498] {cap.shape=f,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.3658296  0.9841060 0.3717381 1.0102195  2972
[6499] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.3658296  0.9593286 0.3813392 1.0408100  2972
[6500] {cap.shape=f,                                                                                              
        ring.number=o}              => {veil.color=w}               0.3655835  0.9834437 0.3717381 1.0082656  2970
[6501] {cap.shape=f,                                                                                              
        veil.color=w}               => {ring.number=o}              0.3655835  0.9574468 0.3818316 1.0387684  2970
[6502] {cap.shape=f,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.3810931  0.9993544 0.3813392 1.0245779  3096
[6503] {cap.shape=f,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.3810931  0.9980658 0.3818316 1.0245497  3096
[6504] {cap.surface=y,                                                                                            
        bruises=t}                  => {odor=n}                     0.1250615  0.6381910 0.1959626 1.4695758  1016
[6505] {cap.surface=y,                                                                                            
        odor=n}                     => {bruises=t}                  0.1250615  0.9071429 0.1378631 2.1829469  1016
[6506] {bruises=t,                                                                                                
        odor=n}                     => {cap.surface=y}              0.1250615  0.5000000 0.2501231 1.2521578  1016
[6507] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.root=b}               0.1132447  0.5778894 0.1959626 1.2433194   920
[6508] {cap.surface=y,                                                                                            
        stalk.root=b}               => {bruises=t}                  0.1132447  0.5750000 0.1969473 1.3836789   920
[6509] {cap.surface=y,                                                                                            
        bruises=t}                  => {ring.type=p}                0.1841457  0.9396985 0.1959626 1.9239190  1496
[6510] {cap.surface=y,                                                                                            
        ring.type=p}                => {bruises=t}                  0.1841457  0.9946809 0.1851305 2.3935981  1496
[6511] {cap.surface=y,                                                                                            
        bruises=t}                  => {class=e}                    0.1752831  0.8944724 0.1959626 1.7268758  1424
[6512] {class=e,                                                                                                  
        cap.surface=y}              => {bruises=t}                  0.1752831  0.9468085 0.1851305 2.2783982  1424
[6513] {class=e,                                                                                                  
        bruises=t}                  => {cap.surface=y}              0.1752831  0.5174419 0.3387494 1.2958378  1424
[6514] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.color.below.ring=w}   0.1191531  0.6080402 0.1959626 1.1267606   968
[6515] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {bruises=t}                  0.1191531  0.6685083 0.1782373 1.6086971   968
[6516] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.color.above.ring=w}   0.1191531  0.6080402 0.1959626 1.1065678   968
[6517] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {bruises=t}                  0.1191531  0.6505376 0.1831610 1.5654525   968
[6518] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.shape=t}              0.1063516  0.5427136 0.1959626 0.9568153   864
[6519] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {bruises=t}                  0.1063516  0.5000000 0.2127031 1.2031991   864
[6520] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.surface.below.ring=s} 0.1723289  0.8793970 0.1959626 1.4473706  1400
[6521] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {bruises=t}                  0.1723289  0.7592191 0.2269818 1.8269834  1400
[6522] {cap.surface=y,                                                                                            
        bruises=t}                  => {stalk.surface.above.ring=s} 0.1959626  1.0000000 0.1959626 1.5695518  1592
[6523] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {bruises=t}                  0.1959626  0.7639155 0.2565239 1.8382849  1592
[6524] {cap.surface=y,                                                                                            
        bruises=t}                  => {gill.size=b}                0.1797144  0.9170854 0.1959626 1.3275841  1460
[6525] {cap.surface=y,                                                                                            
        gill.size=b}                => {bruises=t}                  0.1797144  0.6784387 0.2648941 1.6325935  1460
[6526] {cap.surface=y,                                                                                            
        bruises=t}                  => {gill.spacing=c}             0.1954702  0.9974874 0.1959626 1.1896048  1588
[6527] {cap.surface=y,                                                                                            
        bruises=t}                  => {ring.number=o}              0.1777450  0.9070352 0.1959626 0.9840750  1444
[6528] {cap.surface=y,                                                                                            
        bruises=t}                  => {gill.attachment=f}          0.1959626  1.0000000 0.1959626 1.0265353  1592
[6529] {cap.surface=y,                                                                                            
        bruises=t}                  => {veil.color=w}               0.1959626  1.0000000 0.1959626 1.0252398  1592
[6530] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {class=p}                    0.1078287  0.5778364 0.1866076 1.1987597   876
[6531] {class=p,                                                                                                  
        cap.surface=y}              => {stalk.shape=e}              0.1078287  0.5034483 0.2141802 1.1632576   876
[6532] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {gill.size=b}                0.1585426  0.8496042 0.1866076 1.2298975  1288
[6533] {cap.surface=y,                                                                                            
        gill.size=b}                => {stalk.shape=e}              0.1585426  0.5985130 0.2648941 1.3829123  1288
[6534] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {gill.spacing=c}             0.1821763  0.9762533 0.1866076 1.1642809  1480
[6535] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {ring.number=o}              0.1629739  0.8733509 0.1866076 0.9475298  1324
[6536] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {gill.attachment=f}          0.1843919  0.9881266 0.1866076 1.0143468  1498
[6537] {cap.surface=y,                                                                                            
        stalk.shape=e}              => {veil.color=w}               0.1856228  0.9947230 0.1866076 1.0198295  1508
[6538] {cap.surface=y,                                                                                            
        odor=n}                     => {stalk.root=b}               0.1171837  0.8500000 0.1378631 1.8287606   952
[6539] {cap.surface=y,                                                                                            
        stalk.root=b}               => {odor=n}                     0.1171837  0.5950000 0.1969473 1.3701190   952
[6540] {odor=n,                                                                                                   
        stalk.root=b}               => {cap.surface=y}              0.1171837  0.5000000 0.2343673 1.2521578   952
[6541] {cap.surface=y,                                                                                            
        odor=n}                     => {ring.type=p}                0.1142294  0.8285714 0.1378631 1.6963998   928
[6542] {cap.surface=y,                                                                                            
        ring.type=p}                => {odor=n}                     0.1142294  0.6170213 0.1851305 1.4208279   928
[6543] {cap.surface=y,                                                                                            
        odor=n}                     => {class=e}                    0.1299852  0.9428571 0.1378631 1.8202879  1056
[6544] {class=e,                                                                                                  
        cap.surface=y}              => {odor=n}                     0.1299852  0.7021277 0.1851305 1.6168042  1056
[6545] {cap.surface=y,                                                                                            
        odor=n}                     => {stalk.shape=t}              0.1063516  0.7714286 0.1378631 1.3600446   864
[6546] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {odor=n}                     0.1063516  0.5000000 0.2127031 1.1513605   864
[6547] {cap.surface=y,                                                                                            
        odor=n}                     => {stalk.surface.below.ring=s} 0.1265387  0.9178571 0.1378631 1.5106709  1028
[6548] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {odor=n}                     0.1265387  0.5574837 0.2269818 1.2837295  1028
[6549] {cap.surface=y,                                                                                            
        odor=n}                     => {stalk.surface.above.ring=s} 0.1324471  0.9607143 0.1378631 1.5078908  1076
[6550] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {odor=n}                     0.1324471  0.5163148 0.2565239 1.1889289  1076
[6551] {cap.surface=y,                                                                                            
        odor=n}                     => {gill.size=b}                0.1255539  0.9107143 0.1378631 1.3183612  1020
[6552] {cap.surface=y,                                                                                            
        odor=n}                     => {gill.spacing=c}             0.1334318  0.9678571 0.1378631 1.1542677  1084
[6553] {cap.surface=y,                                                                                            
        odor=n}                     => {ring.number=o}              0.1186608  0.8607143 0.1378631 0.9338198   964
[6554] {cap.surface=y,                                                                                            
        odor=n}                     => {gill.attachment=f}          0.1378631  1.0000000 0.1378631 1.0265353  1120
[6555] {cap.surface=y,                                                                                            
        odor=n}                     => {veil.color=w}               0.1368784  0.9928571 0.1378631 1.0179166  1112
[6556] {cap.shape=x,                                                                                              
        cap.surface=y}              => {stalk.surface.above.ring=s} 0.1147218  0.6554149 0.1750369 1.0287076   932
[6557] {cap.shape=x,                                                                                              
        cap.surface=y}              => {gill.size=b}                0.1272772  0.7271449 0.1750369 1.0526238  1034
[6558] {cap.shape=x,                                                                                              
        cap.surface=y}              => {gill.spacing=c}             0.1740522  0.9943741 0.1750369 1.1858919  1414
[6559] {cap.shape=x,                                                                                              
        cap.surface=y}              => {ring.number=o}              0.1683900  0.9620253 0.1750369 1.0437358  1368
[6560] {cap.shape=x,                                                                                              
        cap.surface=y}              => {gill.attachment=f}          0.1742984  0.9957806 0.1750369 1.0222039  1416
[6561] {cap.shape=x,                                                                                              
        cap.surface=y}              => {veil.color=w}               0.1750369  1.0000000 0.1750369 1.0252398  1422
[6562] {cap.surface=y,                                                                                            
        stalk.root=b}               => {ring.type=p}                0.1142294  0.5800000 0.1969473 1.1874798   928
[6563] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.root=b}               0.1142294  0.6170213 0.1851305 1.3275108   928
[6564] {cap.surface=y,                                                                                            
        stalk.root=b}               => {population=v}               0.1014279  0.5150000 0.1969473 1.0356089   824
[6565] {cap.surface=y,                                                                                            
        stalk.root=b}               => {class=e}                    0.1122600  0.5700000 0.1969473 1.1004468   912
[6566] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.root=b}               0.1122600  0.6063830 0.1851305 1.3046227   912
[6567] {cap.surface=y,                                                                                            
        stalk.root=b}               => {stalk.shape=t}              0.1063516  0.5400000 0.1969473 0.9520312   864
[6568] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {stalk.root=b}               0.1063516  0.5000000 0.2127031 1.0757415   864
[6569] {cap.surface=y,                                                                                            
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.1147218  0.5825000 0.1969473 0.9587176   932
[6570] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {stalk.root=b}               0.1147218  0.5054230 0.2269818 1.0874090   932
[6571] {cap.surface=y,                                                                                            
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.1147218  0.5825000 0.1969473 0.9142639   932
[6572] {cap.surface=y,                                                                                            
        stalk.root=b}               => {gill.size=b}                0.1935007  0.9825000 0.1969473 1.4222790  1572
[6573] {cap.surface=y,                                                                                            
        gill.size=b}                => {stalk.root=b}               0.1935007  0.7304833 0.2648941 1.5716224  1572
[6574] {cap.surface=y,                                                                                            
        stalk.root=b}               => {gill.spacing=c}             0.1935007  0.9825000 0.1969473 1.1717308  1572
[6575] {cap.surface=y,                                                                                            
        stalk.root=b}               => {ring.number=o}              0.1895618  0.9625000 0.1969473 1.0442508  1540
[6576] {cap.surface=y,                                                                                            
        ring.number=o}              => {stalk.root=b}               0.1895618  0.5045872 0.3756770 1.0856107  1540
[6577] {cap.surface=y,                                                                                            
        stalk.root=b}               => {gill.attachment=f}          0.1969473  1.0000000 0.1969473 1.0265353  1600
[6578] {cap.surface=y,                                                                                            
        stalk.root=b}               => {veil.color=w}               0.1969473  1.0000000 0.1969473 1.0252398  1600
[6579] {class=p,                                                                                                  
        cap.surface=y}              => {population=v}               0.1605121  0.7494253 0.2141802 1.5070126  1304
[6580] {cap.surface=y,                                                                                            
        population=v}               => {class=p}                    0.1605121  0.7276786 0.2205810 1.5096171  1304
[6581] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {class=p}                    0.1063516  0.5000000 0.2127031 1.0372829   864
[6582] {class=p,                                                                                                  
        cap.surface=y}              => {bruises=f}                  0.1935007  0.9034483 0.2141802 1.5458327  1572
[6583] {cap.surface=y,                                                                                            
        bruises=f}                  => {class=p}                    0.1935007  0.9515738 0.2033481 1.9741026  1572
[6584] {class=p,                                                                                                  
        cap.surface=y}              => {gill.spacing=c}             0.2127031  0.9931034 0.2141802 1.1843765  1728
[6585] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {class=p}                    0.2127031  0.5386534 0.3948794 1.1174719  1728
[6586] {class=p,                                                                                                  
        cap.surface=y}              => {ring.number=o}              0.2053176  0.9586207 0.2141802 1.0400420  1668
[6587] {cap.surface=y,                                                                                            
        ring.number=o}              => {class=p}                    0.2053176  0.5465269 0.3756770 1.1338060  1668
[6588] {class=p,                                                                                                  
        cap.surface=y}              => {gill.attachment=f}          0.2119645  0.9896552 0.2141802 1.0159159  1722
[6589] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {class=p}                    0.2119645  0.5337880 0.3970950 1.1073783  1722
[6590] {class=p,                                                                                                  
        cap.surface=y}              => {veil.color=w}               0.2131955  0.9954023 0.2141802 1.0205260  1732
[6591] {cap.surface=y,                                                                                            
        veil.color=w}               => {class=p}                    0.2131955  0.5352287 0.3983259 1.1103672  1732
[6592] {cap.surface=y,                                                                                            
        ring.type=p}                => {class=e}                    0.1644510  0.8882979 0.1851305 1.7149553  1336
[6593] {class=e,                                                                                                  
        cap.surface=y}              => {ring.type=p}                0.1644510  0.8882979 0.1851305 1.8186824  1336
[6594] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.color.below.ring=w}   0.1132447  0.6117021 0.1851305 1.1335466   920
[6595] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {ring.type=p}                0.1132447  0.6353591 0.1782373 1.3008209   920
[6596] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.color.above.ring=w}   0.1132447  0.6117021 0.1851305 1.1132321   920
[6597] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {ring.type=p}                0.1132447  0.6182796 0.1831610 1.2658526   920
[6598] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.shape=t}              0.1063516  0.5744681 0.1851305 1.0127992   864
[6599] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {ring.type=p}                0.1063516  0.5000000 0.2127031 1.0236895   864
[6600] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1605121  0.8670213 0.1851305 1.4270018  1304
[6601] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {ring.type=p}                0.1605121  0.7071584 0.2269818 1.4478212  1304
[6602] {cap.surface=y,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.1841457  0.9946809 0.1851305 1.5612031  1496
[6603] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {ring.type=p}                0.1841457  0.7178503 0.2565239 1.4697116  1496
[6604] {cap.surface=y,                                                                                            
        ring.type=p}                => {gill.size=b}                0.1688823  0.9122340 0.1851305 1.3205612  1372
[6605] {cap.surface=y,                                                                                            
        gill.size=b}                => {ring.type=p}                0.1688823  0.6375465 0.2648941 1.3052993  1372
[6606] {cap.surface=y,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.1846381  0.9973404 0.1851305 1.1894295  1500
[6607] {cap.surface=y,                                                                                            
        ring.type=p}                => {ring.number=o}              0.1777450  0.9601064 0.1851305 1.0416539  1444
[6608] {cap.surface=y,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.1851305  1.0000000 0.1851305 1.0265353  1504
[6609] {cap.surface=y,                                                                                            
        ring.type=p}                => {veil.color=w}               0.1851305  1.0000000 0.1851305 1.0252398  1504
[6610] {cap.surface=y,                                                                                            
        population=v}               => {stalk.shape=t}              0.1595273  0.7232143 0.2205810 1.2750419  1296
[6611] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {population=v}               0.1595273  0.7500000 0.2127031 1.5081683  1296
[6612] {cap.surface=y,                                                                                            
        population=v}               => {bruises=f}                  0.1541113  0.6986607 0.2205810 1.1954338  1252
[6613] {cap.surface=y,                                                                                            
        bruises=f}                  => {population=v}               0.1541113  0.7578692 0.2033481 1.5239925  1252
[6614] {cap.surface=y,                                                                                            
        population=v}               => {stalk.surface.below.ring=s} 0.1211226  0.5491071 0.2205810 0.9037574   984
[6615] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {population=v}               0.1211226  0.5336226 0.2269818 1.0730569   984
[6616] {cap.surface=y,                                                                                            
        population=v}               => {stalk.surface.above.ring=s} 0.1240768  0.5625000 0.2205810 0.8828729  1008
[6617] {cap.surface=y,                                                                                            
        population=v}               => {gill.spacing=c}             0.2176268  0.9866071 0.2205810 1.1766290  1768
[6618] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {population=v}               0.2176268  0.5511222 0.3948794 1.1082467  1768
[6619] {cap.surface=y,                                                                                            
        population=v}               => {ring.number=o}              0.2151649  0.9754464 0.2205810 1.0582968  1748
[6620] {cap.surface=y,                                                                                            
        ring.number=o}              => {population=v}               0.2151649  0.5727392 0.3756770 1.1517161  1748
[6621] {cap.surface=y,                                                                                            
        population=v}               => {gill.attachment=f}          0.2205810  1.0000000 0.2205810 1.0265353  1792
[6622] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {population=v}               0.2205810  0.5554867 0.3970950 1.1170232  1792
[6623] {cap.surface=y,                                                                                            
        population=v}               => {veil.color=w}               0.2205810  1.0000000 0.2205810 1.0252398  1792
[6624] {cap.surface=y,                                                                                            
        veil.color=w}               => {population=v}               0.2205810  0.5537701 0.3983259 1.1135713  1792
[6625] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.color.below.ring=w}   0.1043821  0.5638298 0.1851305 1.0448342   848
[6626] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {class=e}                    0.1043821  0.5856354 0.1782373 1.1306325   848
[6627] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.color.above.ring=w}   0.1073363  0.5797872 0.1851305 1.0551504   872
[6628] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {class=e}                    0.1073363  0.5860215 0.1831610 1.1313780   872
[6629] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.shape=t}              0.1063516  0.5744681 0.1851305 1.0127992   864
[6630] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {class=e}                    0.1063516  0.5000000 0.2127031 0.9653042   864
[6631] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.surface.below.ring=s} 0.1531265  0.8271277 0.1851305 1.3613422  1244
[6632] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {class=e}                    0.1531265  0.6746204 0.2269818 1.3024278  1244
[6633] {class=e,                                                                                                  
        cap.surface=y}              => {stalk.surface.above.ring=s} 0.1826686  0.9867021 0.1851305 1.5486801  1484
[6634] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {class=e}                    0.1826686  0.7120921 0.2565239 1.3747710  1484
[6635] {class=e,                                                                                                  
        cap.surface=y}              => {gill.size=b}                0.1762678  0.9521277 0.1851305 1.3783117  1432
[6636] {cap.surface=y,                                                                                            
        gill.size=b}                => {class=e}                    0.1762678  0.6654275 0.2648941 1.2846799  1432
[6637] {class=e,                                                                                                  
        cap.surface=y}              => {gill.spacing=c}             0.1821763  0.9840426 0.1851305 1.1735704  1480
[6638] {class=e,                                                                                                  
        cap.surface=y}              => {ring.number=o}              0.1703594  0.9202128 0.1851305 0.9983719  1384
[6639] {class=e,                                                                                                  
        cap.surface=y}              => {gill.attachment=f}          0.1851305  1.0000000 0.1851305 1.0265353  1504
[6640] {class=e,                                                                                                  
        cap.surface=y}              => {veil.color=w}               0.1851305  1.0000000 0.1851305 1.0252398  1504
[6641] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1250615  0.7016575 0.1782373 1.2769411  1016
[6642] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1250615  0.6827957 0.1831610 1.2652902  1016
[6643] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1221073  0.6850829 0.1782373 1.1275554   992
[6644] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1221073  0.5379610 0.2269818 0.9968966   992
[6645] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1516494  0.8508287 0.1782373 1.3354197  1232
[6646] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1516494  0.5911708 0.2565239 1.0955000  1232
[6647] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {gill.size=b}                0.1029050  0.5773481 0.1782373 0.8357761   836
[6648] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1777450  0.9972376 0.1782373 1.1893068  1444
[6649] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {ring.number=o}              0.1659281  0.9309392 0.1782373 1.0100094  1348
[6650] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1782373  1.0000000 0.1782373 1.0265353  1448
[6651] {cap.surface=y,                                                                                            
        stalk.color.below.ring=w}   => {veil.color=w}               0.1782373  1.0000000 0.1782373 1.0252398  1448
[6652] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1235844  0.6747312 0.1831610 1.1105179  1004
[6653] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1235844  0.5444685 0.2269818 0.9908742  1004
[6654] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1531265  0.8360215 0.1831610 1.3121790  1244
[6655] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1531265  0.5969290 0.2565239 1.0863466  1244
[6656] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {gill.size=b}                0.1029050  0.5618280 0.1831610 0.8133090   836
[6657] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1797144  0.9811828 0.1831610 1.1701599  1460
[6658] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {ring.number=o}              0.1708518  0.9327957 0.1831610 1.0120235  1388
[6659] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1831610  1.0000000 0.1831610 1.0265353  1488
[6660] {cap.surface=y,                                                                                            
        stalk.color.above.ring=w}   => {veil.color=w}               0.1831610  1.0000000 0.1831610 1.0252398  1488
[6661] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {bruises=f}                  0.1063516  0.5000000 0.2127031 0.8555181   864
[6662] {cap.surface=y,                                                                                            
        bruises=f}                  => {stalk.shape=t}              0.1063516  0.5230024 0.2033481 0.9220642   864
[6663] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1595273  0.7500000 0.2127031 1.2344003  1296
[6664] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1595273  0.7028200 0.2269818 1.2390862  1296
[6665] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1595273  0.7500000 0.2127031 1.1771638  1296
[6666] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1595273  0.6218810 0.2565239 1.0963892  1296
[6667] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {gill.size=b}                0.1063516  0.5000000 0.2127031 0.7238061   864
[6668] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  1.0000000 0.2127031 1.1926013  1728
[6669] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {stalk.shape=t}              0.2127031  0.5386534 0.3948794 0.9496571  1728
[6670] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {ring.number=o}              0.2127031  1.0000000 0.2127031 1.0849359  1728
[6671] {cap.surface=y,                                                                                            
        ring.number=o}              => {stalk.shape=t}              0.2127031  0.5661861 0.3756770 0.9981979  1728
[6672] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {gill.attachment=f}          0.2127031  1.0000000 0.2127031 1.0265353  1728
[6673] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {stalk.shape=t}              0.2127031  0.5356479 0.3970950 0.9443583  1728
[6674] {cap.surface=y,                                                                                            
        stalk.shape=t}              => {veil.color=w}               0.2127031  1.0000000 0.2127031 1.0252398  1728
[6675] {cap.surface=y,                                                                                            
        veil.color=w}               => {stalk.shape=t}              0.2127031  0.5339926 0.3983259 0.9414400  1728
[6676] {cap.surface=y,                                                                                            
        bruises=f}                  => {gill.spacing=c}             0.1994092  0.9806295 0.2033481 1.1695001  1620
[6677] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {bruises=f}                  0.1994092  0.5049875 0.3948794 0.8640520  1620
[6678] {cap.surface=y,                                                                                            
        bruises=f}                  => {ring.number=o}              0.1979321  0.9733656 0.2033481 1.0560393  1608
[6679] {cap.surface=y,                                                                                            
        ring.number=o}              => {bruises=f}                  0.1979321  0.5268676 0.3756770 0.9014896  1608
[6680] {cap.surface=y,                                                                                            
        bruises=f}                  => {gill.attachment=f}          0.2011324  0.9891041 0.2033481 1.0153502  1634
[6681] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {bruises=f}                  0.2011324  0.5065096 0.3970950 0.8666563  1634
[6682] {cap.surface=y,                                                                                            
        bruises=f}                  => {veil.color=w}               0.2023634  0.9951574 0.2033481 1.0202749  1644
[6683] {cap.surface=y,                                                                                            
        veil.color=w}               => {bruises=f}                  0.2023634  0.5080346 0.3983259 0.8692656  1644
[6684] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1996553  0.8796095 0.2269818 1.3805927  1622
[6685] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1996553  0.7783109 0.2565239 1.2809964  1622
[6686] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {gill.size=b}                0.1560807  0.6876356 0.2269818 0.9954297  1268
[6687] {cap.surface=y,                                                                                            
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1560807  0.5892193 0.2648941 0.9697767  1268
[6688] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.2250123  0.9913232 0.2269818 1.1822533  1828
[6689] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.2250123  0.5698254 0.3948794 0.9378569  1828
[6690] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {ring.number=o}              0.2087642  0.9197397 0.2269818 0.9978586  1696
[6691] {cap.surface=y,                                                                                            
        ring.number=o}              => {stalk.surface.below.ring=s} 0.2087642  0.5557012 0.3756770 0.9146103  1696
[6692] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.2269818  1.0000000 0.2269818 1.0265353  1844
[6693] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.2269818  0.5716057 0.3970950 0.9407870  1844
[6694] {cap.surface=y,                                                                                            
        stalk.surface.below.ring=s} => {veil.color=w}               0.2269818  1.0000000 0.2269818 1.0252398  1844
[6695] {cap.surface=y,                                                                                            
        veil.color=w}               => {stalk.surface.below.ring=s} 0.2269818  0.5698393 0.3983259 0.9378798  1844
[6696] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {gill.size=b}                0.1797144  0.7005758 0.2565239 1.0141621  1460
[6697] {cap.surface=y,                                                                                            
        gill.size=b}                => {stalk.surface.above.ring=s} 0.1797144  0.6784387 0.2648941 1.0648446  1460
[6698] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2545544  0.9923225 0.2565239 1.1834450  2068
[6699] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.2545544  0.6446384 0.3948794 1.0117934  2068
[6700] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {ring.number=o}              0.2383063  0.9289827 0.2565239 1.0078867  1936
[6701] {cap.surface=y,                                                                                            
        ring.number=o}              => {stalk.surface.above.ring=s} 0.2383063  0.6343381 0.3756770 0.9956266  1936
[6702] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2565239  1.0000000 0.2565239 1.0265353  2084
[6703] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.2565239  0.6460012 0.3970950 1.0139324  2084
[6704] {cap.surface=y,                                                                                            
        stalk.surface.above.ring=s} => {veil.color=w}               0.2565239  1.0000000 0.2565239 1.0252398  2084
[6705] {cap.surface=y,                                                                                            
        veil.color=w}               => {stalk.surface.above.ring=s} 0.2565239  0.6440049 0.3983259 1.0107991  2084
[6706] {cap.surface=y,                                                                                            
        gill.size=b}                => {gill.spacing=c}             0.2648941  1.0000000 0.2648941 1.1926013  2152
[6707] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {gill.size=b}                0.2648941  0.6708229 0.3948794 0.9710915  2152
[6708] {cap.surface=y,                                                                                            
        gill.size=b}                => {ring.number=o}              0.2412605  0.9107807 0.2648941 0.9881386  1960
[6709] {cap.surface=y,                                                                                            
        ring.number=o}              => {gill.size=b}                0.2412605  0.6422018 0.3756770 0.9296592  1960
[6710] {cap.surface=y,                                                                                            
        gill.size=b}                => {gill.attachment=f}          0.2626785  0.9916357 0.2648941 1.0179490  2134
[6711] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {gill.size=b}                0.2626785  0.6615003 0.3970950 0.9575960  2134
[6712] {cap.surface=y,                                                                                            
        gill.size=b}                => {veil.color=w}               0.2648941  1.0000000 0.2648941 1.0252398  2152
[6713] {cap.surface=y,                                                                                            
        veil.color=w}               => {gill.size=b}                0.2648941  0.6650185 0.3983259 0.9626890  2152
[6714] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {ring.number=o}              0.3712457  0.9401496 0.3948794 1.0200021  3016
[6715] {cap.surface=y,                                                                                            
        ring.number=o}              => {gill.spacing=c}             0.3712457  0.9882045 0.3756770 1.1785339  3016
[6716] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {gill.attachment=f}          0.3926637  0.9943890 0.3948794 1.0207754  3190
[6717] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {gill.spacing=c}             0.3926637  0.9888407 0.3970950 1.1792927  3190
[6718] {cap.surface=y,                                                                                            
        gill.spacing=c}             => {veil.color=w}               0.3948794  1.0000000 0.3948794 1.0252398  3208
[6719] {cap.surface=y,                                                                                            
        veil.color=w}               => {gill.spacing=c}             0.3948794  0.9913473 0.3983259 1.1822821  3208
[6720] {cap.surface=y,                                                                                            
        ring.number=o}              => {gill.attachment=f}          0.3756770  1.0000000 0.3756770 1.0265353  3052
[6721] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {ring.number=o}              0.3756770  0.9460632 0.3970950 1.0264180  3052
[6722] {cap.surface=y,                                                                                            
        ring.number=o}              => {veil.color=w}               0.3746923  0.9973788 0.3756770 1.0225524  3044
[6723] {cap.surface=y,                                                                                            
        veil.color=w}               => {ring.number=o}              0.3746923  0.9406675 0.3983259 1.0205639  3044
[6724] {cap.surface=y,                                                                                            
        gill.attachment=f}          => {veil.color=w}               0.3961103  0.9975201 0.3970950 1.0226973  3218
[6725] {cap.surface=y,                                                                                            
        veil.color=w}               => {gill.attachment=f}          0.3961103  0.9944376 0.3983259 1.0208252  3218
[6726] {bruises=t,                                                                                                
        stalk.shape=e}              => {ring.type=p}                0.1319547  0.8481013 0.1555884 1.7363847  1072
[6727] {stalk.shape=e,                                                                                            
        ring.type=p}                => {bruises=t}                  0.1319547  0.5775862 0.2284589 1.3899024  1072
[6728] {bruises=t,                                                                                                
        stalk.shape=e}              => {class=e}                    0.1142294  0.7341772 0.1555884 1.4174087   928
[6729] {class=e,                                                                                                  
        stalk.shape=e}              => {bruises=t}                  0.1142294  0.5742574 0.1989168 1.3818920   928
[6730] {bruises=t,                                                                                                
        stalk.shape=e}              => {stalk.color.below.ring=w}   0.1437715  0.9240506 0.1555884 1.7123603  1168
[6731] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {stalk.shape=e}              0.1437715  0.5488722 0.2619399 1.2682132  1168
[6732] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {bruises=t}                  0.1437715  0.6517857 0.2205810 1.5684559  1168
[6733] {bruises=t,                                                                                                
        stalk.shape=e}              => {stalk.color.above.ring=w}   0.1437715  0.9240506 0.1555884 1.6816728  1168
[6734] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {stalk.shape=e}              0.1437715  0.5488722 0.2619399 1.2682132  1168
[6735] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {bruises=t}                  0.1437715  0.6239316 0.2304284 1.5014279  1168
[6736] {bruises=t,                                                                                                
        stalk.shape=e}              => {stalk.surface.below.ring=s} 0.1319547  0.8481013 0.1555884 1.3958620  1072
[6737] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {bruises=t}                  0.1319547  0.6232558 0.2117184 1.4998016  1072
[6738] {bruises=t,                                                                                                
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.1555884  1.0000000 0.1555884 1.5695518  1264
[6739] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {bruises=t}                  0.1555884  0.6448980 0.2412605 1.5518812  1264
[6740] {bruises=t,                                                                                                
        stalk.shape=e}              => {gill.size=b}                0.1230921  0.7911392 0.1555884 1.1452629  1000
[6741] {bruises=t,                                                                                                
        stalk.shape=e}              => {gill.spacing=c}             0.1546036  0.9936709 0.1555884 1.1850532  1256
[6742] {bruises=t,                                                                                                
        stalk.shape=e}              => {ring.number=o}              0.1191531  0.7658228 0.1555884 0.8308686   968
[6743] {bruises=t,                                                                                                
        stalk.shape=e}              => {gill.attachment=f}          0.1555884  1.0000000 0.1555884 1.0265353  1264
[6744] {bruises=t,                                                                                                
        stalk.shape=e}              => {veil.color=w}               0.1555884  1.0000000 0.1555884 1.0252398  1264
[6745] {cap.shape=x,                                                                                              
        bruises=t}                  => {odor=n}                     0.1161989  0.5841584 0.1989168 1.3451539   944
[6746] {cap.shape=x,                                                                                              
        odor=n}                     => {bruises=t}                  0.1161989  0.6066838 0.1915313 1.4599228   944
[6747] {bruises=t,                                                                                                
        odor=n}                     => {stalk.root=b}               0.2264894  0.9055118 0.2501231 1.9481933  1840
[6748] {bruises=t,                                                                                                
        stalk.root=b}               => {odor=n}                     0.2264894  0.8273381 0.2737568 1.9051290  1840
[6749] {odor=n,                                                                                                   
        stalk.root=b}               => {bruises=t}                  0.2264894  0.9663866 0.2343673 2.3255108  1840
[6750] {bruises=t,                                                                                                
        odor=n}                     => {ring.type=p}                0.2264894  0.9055118 0.2501231 1.8539259  1840
[6751] {bruises=t,                                                                                                
        ring.type=p}                => {odor=n}                     0.2264894  0.5778894 0.3919252 1.3307182  1840
[6752] {odor=n,                                                                                                   
        ring.type=p}                => {bruises=t}                  0.2264894  0.7565789 0.2993599 1.8206301  1840
[6753] {bruises=t,                                                                                                
        population=v}               => {odor=n}                     0.1171837  0.7212121 0.1624815 1.6607504   952
[6754] {odor=n,                                                                                                   
        population=v}               => {bruises=t}                  0.1171837  0.7933333 0.1477105 1.9090758   952
[6755] {bruises=t,                                                                                                
        odor=n}                     => {class=e}                    0.2402757  0.9606299 0.2501231 1.8546002  1952
[6756] {class=e,                                                                                                  
        bruises=t}                  => {odor=n}                     0.2402757  0.7093023 0.3387494 1.6333254  1952
[6757] {class=e,                                                                                                  
        odor=n}                     => {bruises=t}                  0.2402757  0.5727700 0.4194978 1.3783125  1952
[6758] {bruises=t,                                                                                                
        odor=n}                     => {stalk.shape=t}              0.2127031  0.8503937 0.2501231 1.4992618  1728
[6759] {bruises=t,                                                                                                
        stalk.shape=t}              => {odor=n}                     0.2127031  0.8181818 0.2599705 1.8840445  1728
[6760] {odor=n,                                                                                                   
        stalk.shape=t}              => {bruises=t}                  0.2127031  0.6923077 0.3072378 1.6659679  1728
[6761] {bruises=t,                                                                                                
        odor=n}                     => {stalk.surface.below.ring=s} 0.2501231  1.0000000 0.2501231 1.6458671  2032
[6762] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {odor=n}                     0.2501231  0.6684211 0.3741999 1.5391873  2032
[6763] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {bruises=t}                  0.2501231  0.7075209 0.3535204 1.7025769  2032
[6764] {bruises=t,                                                                                                
        odor=n}                     => {stalk.surface.above.ring=s} 0.2501231  1.0000000 0.2501231 1.5695518  2032
[6765] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {odor=n}                     0.2501231  0.6287129 0.3978336 1.4477504  2032
[6766] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {bruises=t}                  0.2501231  0.6958904 0.3594289 1.6745894  2032
[6767] {bruises=t,                                                                                                
        odor=n}                     => {gill.size=b}                0.2491384  0.9960630 0.2501231 1.4419130  2024
[6768] {bruises=t,                                                                                                
        gill.size=b}                => {odor=n}                     0.2491384  0.6710875 0.3712457 1.5453274  2024
[6769] {odor=n,                                                                                                   
        gill.size=b}                => {bruises=t}                  0.2491384  0.6155718 0.4047267 1.4813108  2024
[6770] {bruises=t,                                                                                                
        odor=n}                     => {gill.spacing=c}             0.2491384  0.9960630 0.2501231 1.1879060  2024
[6771] {bruises=t,                                                                                                
        gill.spacing=c}             => {odor=n}                     0.2491384  0.6185819 0.4027573 1.4244216  2024
[6772] {odor=n,                                                                                                   
        gill.spacing=c}             => {bruises=t}                  0.2491384  0.8405316 0.2964057 2.0226536  2024
[6773] {bruises=t,                                                                                                
        odor=n}                     => {ring.number=o}              0.2136878  0.8543307 0.2501231 0.9268941  1736
[6774] {bruises=t,                                                                                                
        ring.number=o}              => {odor=n}                     0.2136878  0.5636364 0.3791236 1.2978973  1736
[6775] {odor=n,                                                                                                   
        ring.number=o}              => {bruises=t}                  0.2136878  0.5928962 0.3604136 1.4267442  1736
[6776] {bruises=t,                                                                                                
        odor=n}                     => {gill.attachment=f}          0.2501231  1.0000000 0.2501231 1.0265353  2032
[6777] {bruises=t,                                                                                                
        gill.attachment=f}          => {odor=n}                     0.2501231  0.6018957 0.4155588 1.3859980  2032
[6778] {odor=n,                                                                                                   
        gill.attachment=f}          => {bruises=t}                  0.2501231  0.6091127 0.4106352 1.4657677  2032
[6779] {bruises=t,                                                                                                
        odor=n}                     => {veil.color=w}               0.2501231  1.0000000 0.2501231 1.0252398  2032
[6780] {bruises=t,                                                                                                
        veil.color=w}               => {odor=n}                     0.2501231  0.6018957 0.4155588 1.3859980  2032
[6781] {odor=n,                                                                                                   
        veil.color=w}               => {bruises=t}                  0.2501231  0.6105769 0.4096504 1.4692912  2032
[6782] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.root=b}               0.1319547  0.6633663 0.1989168 1.4272214  1072
[6783] {cap.shape=x,                                                                                              
        stalk.root=b}               => {bruises=t}                  0.1319547  0.5548654 0.2378139 1.3352271  1072
[6784] {cap.shape=x,                                                                                              
        bruises=t}                  => {ring.type=p}                0.1910389  0.9603960 0.1989168 1.9662947  1552
[6785] {cap.shape=x,                                                                                              
        ring.type=p}                => {bruises=t}                  0.1910389  0.8066528 0.2368291 1.9411278  1552
[6786] {cap.shape=x,                                                                                              
        bruises=t}                  => {class=e}                    0.1654357  0.8316832 0.1989168 1.6056545  1344
[6787] {class=e,                                                                                                  
        cap.shape=x}                => {bruises=t}                  0.1654357  0.6899384 0.2397834 1.6602665  1344
[6788] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.color.below.ring=w}   0.1240768  0.6237624 0.1989168 1.1558954  1008
[6789] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.color.above.ring=w}   0.1240768  0.6237624 0.1989168 1.1351805  1008
[6790] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.shape=t}              0.1299852  0.6534653 0.1989168 1.1520730  1056
[6791] {bruises=t,                                                                                                
        stalk.shape=t}              => {cap.shape=x}                0.1299852  0.5000000 0.2599705 1.1110503  1056
[6792] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {bruises=t}                  0.1299852  0.5238095 0.2481536 1.2604942  1056
[6793] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.surface.below.ring=s} 0.1782373  0.8960396 0.1989168 1.4747621  1448
[6794] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {bruises=t}                  0.1782373  0.6418440 0.2776957 1.5445321  1448
[6795] {cap.shape=x,                                                                                              
        bruises=t}                  => {stalk.surface.above.ring=s} 0.1900542  0.9554455 0.1989168 1.4996213  1544
[6796] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {bruises=t}                  0.1900542  0.6498316 0.2924668 1.5637537  1544
[6797] {cap.shape=x,                                                                                              
        bruises=t}                  => {gill.size=b}                0.1772526  0.8910891 0.1989168 1.2899515  1440
[6798] {cap.shape=x,                                                                                              
        gill.size=b}                => {bruises=t}                  0.1772526  0.5471125 0.3239783 1.3165704  1440
[6799] {cap.shape=x,                                                                                              
        bruises=t}                  => {gill.spacing=c}             0.1930084  0.9702970 0.1989168 1.1571775  1568
[6800] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {bruises=t}                  0.1930084  0.5198939 0.3712457 1.2510717  1568
[6801] {cap.shape=x,                                                                                              
        bruises=t}                  => {ring.number=o}              0.1890694  0.9504950 0.1989168 1.0312262  1536
[6802] {cap.shape=x,                                                                                              
        bruises=t}                  => {gill.attachment=f}          0.1989168  1.0000000 0.1989168 1.0265353  1616
[6803] {cap.shape=x,                                                                                              
        bruises=t}                  => {veil.color=w}               0.1989168  1.0000000 0.1989168 1.0252398  1616
[6804] {bruises=t,                                                                                                
        stalk.root=b}               => {ring.type=p}                0.2737568  1.0000000 0.2737568 2.0473790  2224
[6805] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.root=b}               0.2737568  0.6984925 0.3919252 1.5027947  2224
[6806] {stalk.root=b,                                                                                             
        ring.type=p}                => {bruises=t}                  0.2737568  0.9144737 0.2993599 2.2005877  2224
[6807] {bruises=t,                                                                                                
        stalk.root=b}               => {population=v}               0.1467258  0.5359712 0.2737568 1.0777798  1192
[6808] {bruises=t,                                                                                                
        population=v}               => {stalk.root=b}               0.1467258  0.9030303 0.1624815 1.9428544  1192
[6809] {stalk.root=b,                                                                                             
        population=v}               => {bruises=t}                  0.1467258  0.6008065 0.2442147 1.4457795  1192
[6810] {bruises=t,                                                                                                
        stalk.root=b}               => {class=e}                    0.2284589  0.8345324 0.2737568 1.6111552  1856
[6811] {class=e,                                                                                                  
        bruises=t}                  => {stalk.root=b}               0.2284589  0.6744186 0.3387494 1.4510002  1856
[6812] {class=e,                                                                                                  
        stalk.root=b}               => {bruises=t}                  0.2284589  0.9666667 0.2363368 2.3261848  1856
[6813] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {stalk.root=b}               0.1319547  0.5037594 0.2619399 1.0838298  1072
[6814] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {bruises=t}                  0.1319547  0.8481013 0.1555884 2.0408693  1072
[6815] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {stalk.root=b}               0.1319547  0.5037594 0.2619399 1.0838298  1072
[6816] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {bruises=t}                  0.1319547  0.8170732 0.1614968 1.9662033  1072
[6817] {bruises=t,                                                                                                
        stalk.root=b}               => {stalk.shape=t}              0.2599705  0.9496403 0.2737568 1.6742356  2112
[6818] {bruises=t,                                                                                                
        stalk.shape=t}              => {stalk.root=b}               0.2599705  1.0000000 0.2599705 2.1514831  2112
[6819] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {bruises=t}                  0.2599705  1.0000000 0.2599705 2.4063981  2112
[6820] {bruises=t,                                                                                                
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2560315  0.9352518 0.2737568 1.5393002  2080
[6821] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2560315  0.6842105 0.3741999 1.4720674  2080
[6822] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {bruises=t}                  0.2560315  0.9059233 0.2826194 2.1800122  2080
[6823] {bruises=t,                                                                                                
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2560315  0.9352518 0.2737568 1.4679261  2080
[6824] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {stalk.root=b}               0.2560315  0.6435644 0.3978336 1.3846178  2080
[6825] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {bruises=t}                  0.2560315  0.9059233 0.2826194 2.1800122  2080
[6826] {bruises=t,                                                                                                
        stalk.root=b}               => {gill.size=b}                0.2609552  0.9532374 0.2737568 1.3799182  2120
[6827] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.root=b}               0.2609552  0.7029178 0.3712457 1.5123157  2120
[6828] {gill.size=b,                                                                                              
        stalk.root=b}               => {bruises=t}                  0.2609552  0.6177156 0.4224520 1.4864697  2120
[6829] {bruises=t,                                                                                                
        stalk.root=b}               => {gill.spacing=c}             0.2609552  0.9532374 0.2737568 1.1368322  2120
[6830] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.root=b}               0.2609552  0.6479218 0.4027573 1.3939927  2120
[6831] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {bruises=t}                  0.2609552  0.6009070 0.4342688 1.4460215  2120
[6832] {bruises=t,                                                                                                
        stalk.root=b}               => {ring.number=o}              0.2609552  0.9532374 0.2737568 1.0342015  2120
[6833] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.root=b}               0.2609552  0.6883117 0.3791236 1.4808909  2120
[6834] {stalk.root=b,                                                                                             
        ring.number=o}              => {bruises=t}                  0.2609552  0.5798687 0.4500246 1.3953950  2120
[6835] {bruises=t,                                                                                                
        stalk.root=b}               => {gill.attachment=f}          0.2737568  1.0000000 0.2737568 1.0265353  2224
[6836] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.root=b}               0.2737568  0.6587678 0.4155588 1.4173277  2224
[6837] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {bruises=t}                  0.2737568  0.5889831 0.4647957 1.4173277  2224
[6838] {bruises=t,                                                                                                
        stalk.root=b}               => {veil.color=w}               0.2737568  1.0000000 0.2737568 1.0252398  2224
[6839] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.root=b}               0.2737568  0.6587678 0.4155588 1.4173277  2224
[6840] {stalk.root=b,                                                                                             
        veil.color=w}               => {bruises=t}                  0.2737568  0.5889831 0.4647957 1.4173277  2224
[6841] {bruises=t,                                                                                                
        population=v}               => {ring.type=p}                0.1624815  1.0000000 0.1624815 2.0473790  1320
[6842] {ring.type=p,                                                                                              
        population=v}               => {bruises=t}                  0.1624815  0.8461538 0.1920236 2.0361830  1320
[6843] {bruises=t,                                                                                                
        ring.type=p}                => {class=e}                    0.3151157  0.8040201 0.3919252 1.5522479  2560
[6844] {class=e,                                                                                                  
        bruises=t}                  => {ring.type=p}                0.3151157  0.9302326 0.3387494 1.9045386  2560
[6845] {class=e,                                                                                                  
        ring.type=p}                => {bruises=t}                  0.3151157  0.8121827 0.3879862 1.9544350  2560
[6846] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.color.below.ring=w}   0.2501231  0.6381910 0.3919252 1.1826331  2032
[6847] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {ring.type=p}                0.2501231  0.9548872 0.2619399 1.9550161  2032
[6848] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {bruises=t}                  0.2501231  0.7791411 0.3210241 1.8749237  2032
[6849] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.color.above.ring=w}   0.2501231  0.6381910 0.3919252 1.1614389  2032
[6850] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {ring.type=p}                0.2501231  0.9548872 0.2619399 1.9550161  2032
[6851] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {bruises=t}                  0.2501231  0.7791411 0.3210241 1.8749237  2032
[6852] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.shape=t}              0.2599705  0.6633166 0.3919252 1.1694410  2112
[6853] {bruises=t,                                                                                                
        stalk.shape=t}              => {ring.type=p}                0.2599705  1.0000000 0.2599705 2.0473790  2112
[6854] {stalk.shape=t,                                                                                            
        ring.type=p}                => {bruises=t}                  0.2599705  1.0000000 0.2599705 2.4063981  2112
[6855] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.surface.below.ring=s} 0.3505662  0.8944724 0.3919252 1.4721826  2848
[6856] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {ring.type=p}                0.3505662  0.9368421 0.3741999 1.9180709  2848
[6857] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {bruises=t}                  0.3505662  0.8202765 0.4273757 1.9739118  2848
[6858] {bruises=t,                                                                                                
        ring.type=p}                => {stalk.surface.above.ring=s} 0.3741999  0.9547739 0.3919252 1.4985670  3040
[6859] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {ring.type=p}                0.3741999  0.9405941 0.3978336 1.9257526  3040
[6860] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {bruises=t}                  0.3741999  0.8296943 0.4510094 1.9965748  3040
[6861] {bruises=t,                                                                                                
        ring.type=p}                => {gill.size=b}                0.3476120  0.8869347 0.3919252 1.2839375  2824
[6862] {bruises=t,                                                                                                
        gill.size=b}                => {ring.type=p}                0.3476120  0.9363395 0.3712457 1.9170419  2824
[6863] {gill.size=b,                                                                                              
        ring.type=p}                => {bruises=t}                  0.3476120  0.8506024 0.4086657 2.0468880  2824
[6864] {bruises=t,                                                                                                
        ring.type=p}                => {gill.spacing=c}             0.3791236  0.9673367 0.3919252 1.1536470  3080
[6865] {bruises=t,                                                                                                
        gill.spacing=c}             => {ring.type=p}                0.3791236  0.9413203 0.4027573 1.9272394  3080
[6866] {gill.spacing=c,                                                                                           
        ring.type=p}                => {bruises=t}                  0.3791236  0.8850575 0.4283604 2.1298006  3080
[6867] {bruises=t,                                                                                                
        ring.type=p}                => {ring.number=o}              0.3791236  0.9673367 0.3919252 1.0494983  3080
[6868] {bruises=t,                                                                                                
        ring.number=o}              => {ring.type=p}                0.3791236  1.0000000 0.3791236 2.0473790  3080
[6869] {ring.number=o,                                                                                            
        ring.type=p}                => {bruises=t}                  0.3791236  0.8651685 0.4382078 2.0819399  3080
[6870] {bruises=t,                                                                                                
        ring.type=p}                => {gill.attachment=f}          0.3919252  1.0000000 0.3919252 1.0265353  3184
[6871] {bruises=t,                                                                                                
        gill.attachment=f}          => {ring.type=p}                0.3919252  0.9431280 0.4155588 1.9309404  3184
[6872] {gill.attachment=f,                                                                                        
        ring.type=p}                => {bruises=t}                  0.3919252  0.8432203 0.4647957 2.0291238  3184
[6873] {bruises=t,                                                                                                
        ring.type=p}                => {veil.color=w}               0.3919252  1.0000000 0.3919252 1.0252398  3184
[6874] {bruises=t,                                                                                                
        veil.color=w}               => {ring.type=p}                0.3919252  0.9431280 0.4155588 1.9309404  3184
[6875] {veil.color=w,                                                                                             
        ring.type=p}                => {bruises=t}                  0.3919252  0.8432203 0.4647957 2.0291238  3184
[6876] {bruises=t,                                                                                                
        population=v}               => {class=e}                    0.1201379  0.7393939 0.1624815 1.4274801   976
[6877] {class=e,                                                                                                  
        population=v}               => {bruises=t}                  0.1201379  0.8187919 0.1467258 1.9703394   976
[6878] {bruises=t,                                                                                                
        population=v}               => {stalk.shape=t}              0.1358936  0.8363636 0.1624815 1.4745265  1104
[6879] {bruises=t,                                                                                                
        stalk.shape=t}              => {population=v}               0.1358936  0.5227273 0.2599705 1.0511476  1104
[6880] {bruises=t,                                                                                                
        population=v}               => {stalk.surface.below.ring=s} 0.1536189  0.9454545 0.1624815 1.5560925  1248
[6881] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {bruises=t}                  0.1536189  0.5252525 0.2924668 1.2639667  1248
[6882] {bruises=t,                                                                                                
        population=v}               => {stalk.surface.above.ring=s} 0.1536189  0.9454545 0.1624815 1.4839399  1248
[6883] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {bruises=t}                  0.1536189  0.5200000 0.2954210 1.2513270  1248
[6884] {bruises=t,                                                                                                
        population=v}               => {gill.size=b}                0.1349089  0.8303030 0.1624815 1.2019568  1096
[6885] {gill.size=b,                                                                                              
        population=v}               => {bruises=t}                  0.1349089  0.5956522 0.2264894 1.4333763  1096
[6886] {bruises=t,                                                                                                
        population=v}               => {gill.spacing=c}             0.1506647  0.9272727 0.1624815 1.1058667  1224
[6887] {bruises=t,                                                                                                
        population=v}               => {ring.number=o}              0.1516494  0.9333333 0.1624815 1.0126068  1232
[6888] {bruises=t,                                                                                                
        population=v}               => {gill.attachment=f}          0.1624815  1.0000000 0.1624815 1.0265353  1320
[6889] {bruises=t,                                                                                                
        population=v}               => {veil.color=w}               0.1624815  1.0000000 0.1624815 1.0252398  1320
[6890] {class=e,                                                                                                  
        bruises=t}                  => {stalk.color.below.ring=w}   0.1851305  0.5465116 0.3387494 1.0127419  1504
[6891] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {class=e}                    0.1851305  0.7067669 0.2619399 1.3644901  1504
[6892] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {bruises=t}                  0.1851305  0.5562130 0.3328410 1.3384700  1504
[6893] {class=e,                                                                                                  
        bruises=t}                  => {stalk.color.above.ring=w}   0.1851305  0.5465116 0.3387494 0.9945924  1504
[6894] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {class=e}                    0.1851305  0.7067669 0.2619399 1.3644901  1504
[6895] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {bruises=t}                  0.1851305  0.5465116 0.3387494 1.3151245  1504
[6896] {class=e,                                                                                                  
        bruises=t}                  => {stalk.shape=t}              0.2245199  0.6627907 0.3387494 1.1685138  1824
[6897] {bruises=t,                                                                                                
        stalk.shape=t}              => {class=e}                    0.2245199  0.8636364 0.2599705 1.6673436  1824
[6898] {class=e,                                                                                                  
        stalk.shape=t}              => {bruises=t}                  0.2245199  0.7037037 0.3190547 1.6933913  1824
[6899] {class=e,                                                                                                  
        bruises=t}                  => {stalk.surface.below.ring=s} 0.3151157  0.9302326 0.3387494 1.5310392  2560
[6900] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {class=e}                    0.3151157  0.8421053 0.3741999 1.6257755  2560
[6901] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {bruises=t}                  0.3151157  0.7529412 0.4185130 1.8118762  2560
[6902] {class=e,                                                                                                  
        bruises=t}                  => {stalk.surface.above.ring=s} 0.3387494  1.0000000 0.3387494 1.5695518  2752
[6903] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {class=e}                    0.3387494  0.8514851 0.3978336 1.6438844  2752
[6904] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {bruises=t}                  0.3387494  0.7560440 0.4480551 1.8193427  2752
[6905] {class=e,                                                                                                  
        bruises=t}                  => {gill.size=b}                0.3269325  0.9651163 0.3387494 1.3971142  2656
[6906] {bruises=t,                                                                                                
        gill.size=b}                => {class=e}                    0.3269325  0.8806366 0.3712457 1.7001644  2656
[6907] {class=e,                                                                                                  
        gill.size=b}                => {bruises=t}                  0.3269325  0.6775510 0.4825209 1.6304575  2656
[6908] {class=e,                                                                                                  
        bruises=t}                  => {gill.spacing=c}             0.3269325  0.9651163 0.3387494 1.1509989  2656
[6909] {bruises=t,                                                                                                
        gill.spacing=c}             => {class=e}                    0.3269325  0.8117359 0.4027573 1.5671442  2656
[6910] {class=e,                                                                                                  
        gill.spacing=c}             => {bruises=t}                  0.3269325  0.8829787 0.3702610 2.1247983  2656
[6911] {class=e,                                                                                                  
        bruises=t}                  => {ring.number=o}              0.3111768  0.9186047 0.3387494 0.9966272  2528
[6912] {bruises=t,                                                                                                
        ring.number=o}              => {class=e}                    0.3111768  0.8207792 0.3791236 1.5846032  2528
[6913] {class=e,                                                                                                  
        ring.number=o}              => {bruises=t}                  0.3111768  0.6869565 0.4529788 1.6530909  2528
[6914] {class=e,                                                                                                  
        bruises=t}                  => {gill.attachment=f}          0.3387494  1.0000000 0.3387494 1.0265353  2752
[6915] {bruises=t,                                                                                                
        gill.attachment=f}          => {class=e}                    0.3387494  0.8151659 0.4155588 1.5737661  2752
[6916] {class=e,                                                                                                  
        gill.attachment=f}          => {bruises=t}                  0.3387494  0.6852590 0.4943378 1.6490059  2752
[6917] {class=e,                                                                                                  
        bruises=t}                  => {veil.color=w}               0.3387494  1.0000000 0.3387494 1.0252398  2752
[6918] {bruises=t,                                                                                                
        veil.color=w}               => {class=e}                    0.3387494  0.8151659 0.4155588 1.5737661  2752
[6919] {class=e,                                                                                                  
        veil.color=w}               => {bruises=t}                  0.3387494  0.6852590 0.4943378 1.6490059  2752
[6920] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2087642  0.7969925 0.2619399 1.4504406  1696
[6921] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2087642  0.7969925 0.2619399 1.4769085  1696
[6922] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2205810  0.8421053 0.2619399 1.3859933  1792
[6923] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.2205810  0.5894737 0.3741999 1.0923550  1792
[6924] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {bruises=t}                  0.2205810  0.5894737 0.3741999 1.4185084  1792
[6925] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.2442147  0.9323308 0.2619399 1.4633415  1984
[6926] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.2442147  0.6138614 0.3978336 1.1375479  1984
[6927] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {bruises=t}                  0.2442147  0.6048780 0.4037420 1.4555774  1984
[6928] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {gill.size=b}                0.2176268  0.8308271 0.2619399 1.2027154  1768
[6929] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.color.below.ring=w}   0.2176268  0.5862069 0.3712457 1.0863013  1768
[6930] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {bruises=t}                  0.2176268  0.6260623 0.3476120 1.5065552  1768
[6931] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.2491384  0.9511278 0.2619399 1.1343163  2024
[6932] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.color.below.ring=w}   0.2491384  0.6185819 0.4027573 1.1462955  2024
[6933] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {bruises=t}                  0.2491384  0.6470588 0.3850320 1.5570811  2024
[6934] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {ring.number=o}              0.2373215  0.9060150 0.2619399 0.9829682  1928
[6935] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.color.below.ring=w}   0.2373215  0.6259740 0.3791236 1.1599938  1928
[6936] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2619399  1.0000000 0.2619399 1.0265353  2128
[6937] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.2619399  0.6303318 0.4155588 1.1680692  2128
[6938] {bruises=t,                                                                                                
        stalk.color.below.ring=w}   => {veil.color=w}               0.2619399  1.0000000 0.2619399 1.0252398  2128
[6939] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.color.below.ring=w}   0.2619399  0.6303318 0.4155588 1.1680692  2128
[6940] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.2205810  0.8421053 0.2619399 1.3859933  1792
[6941] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.2205810  0.5894737 0.3741999 1.0727787  1792
[6942] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {bruises=t}                  0.2205810  0.5848564 0.3771541 1.4073973  1792
[6943] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.2442147  0.9323308 0.2619399 1.4633415  1984
[6944] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.2442147  0.6138614 0.3978336 1.1171617  1984
[6945] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {bruises=t}                  0.2442147  0.6004843 0.4066962 1.4450042  1984
[6946] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {gill.size=b}                0.2176268  0.8308271 0.2619399 1.2027154  1768
[6947] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.color.above.ring=w}   0.2176268  0.5862069 0.3712457 1.0668335  1768
[6948] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {bruises=t}                  0.2176268  0.6260623 0.3476120 1.5065552  1768
[6949] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.2491384  0.9511278 0.2619399 1.1343163  2024
[6950] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.color.above.ring=w}   0.2491384  0.6185819 0.4027573 1.1257526  2024
[6951] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {bruises=t}                  0.2491384  0.6405063 0.3889710 1.5413132  2024
[6952] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {ring.number=o}              0.2373215  0.9060150 0.2619399 0.9829682  1928
[6953] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.color.above.ring=w}   0.2373215  0.6259740 0.3791236 1.1392054  1928
[6954] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2619399  1.0000000 0.2619399 1.0265353  2128
[6955] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.2619399  0.6303318 0.4155588 1.1471360  2128
[6956] {bruises=t,                                                                                                
        stalk.color.above.ring=w}   => {veil.color=w}               0.2619399  1.0000000 0.2619399 1.0252398  2128
[6957] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.color.above.ring=w}   0.2619399  0.6303318 0.4155588 1.1471360  2128
[6958] {bruises=t,                                                                                                
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.2422452  0.9318182 0.2599705 1.5336489  1968
[6959] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.2422452  0.6473684 0.3741999 1.1413240  1968
[6960] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {bruises=t}                  0.2422452  0.6119403 0.3958641 1.4725720  1968
[6961] {bruises=t,                                                                                                
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.2422452  0.9318182 0.2599705 1.4625369  1968
[6962] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.2422452  0.6089109 0.3978336 1.0735226  1968
[6963] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {bruises=t}                  0.2422452  0.6119403 0.3958641 1.4725720  1968
[6964] {bruises=t,                                                                                                
        stalk.shape=t}              => {gill.size=b}                0.2481536  0.9545455 0.2599705 1.3818117  2016
[6965] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.shape=t}              0.2481536  0.6684350 0.3712457 1.1784649  2016
[6966] {gill.size=b,                                                                                              
        stalk.shape=t}              => {bruises=t}                  0.2481536  0.7241379 0.3426883 1.7425641  2016
[6967] {bruises=t,                                                                                                
        stalk.shape=t}              => {gill.spacing=c}             0.2481536  0.9545455 0.2599705 1.1383921  2016
[6968] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.shape=t}              0.2481536  0.6161369 0.4027573 1.0862622  2016
[6969] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {bruises=t}                  0.2481536  0.5384615 0.4608567 1.2957528  2016
[6970] {bruises=t,                                                                                                
        stalk.shape=t}              => {ring.number=o}              0.2599705  1.0000000 0.2599705 1.0849359  2112
[6971] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.shape=t}              0.2599705  0.6857143 0.3791236 1.2089286  2112
[6972] {bruises=t,                                                                                                
        stalk.shape=t}              => {gill.attachment=f}          0.2599705  1.0000000 0.2599705 1.0265353  2112
[6973] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.shape=t}              0.2599705  0.6255924 0.4155588 1.1029325  2112
[6974] {bruises=t,                                                                                                
        stalk.shape=t}              => {veil.color=w}               0.2599705  1.0000000 0.2599705 1.0252398  2112
[6975] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.shape=t}              0.2599705  0.6255924 0.4155588 1.1029325  2112
[6976] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.3653373  0.9763158 0.3741999 1.5323782  2968
[6977] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.3653373  0.9183168 0.3978336 1.5114275  2968
[6978] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {bruises=t}                  0.3653373  0.7141482 0.5115707 1.7185249  2968
[6979] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {gill.size=b}                0.3298868  0.8815789 0.3741999 1.2761845  2680
[6980] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.surface.below.ring=s} 0.3298868  0.8885942 0.3712457 1.4625079  2680
[6981] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {bruises=t}                  0.3298868  0.7882353 0.4185130 1.8968079  2680
[6982] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.3613983  0.9657895 0.3741999 1.1518018  2936
[6983] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.3613983  0.8973105 0.4027573 1.4768539  2936
[6984] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {bruises=t}                  0.3613983  0.7017208 0.5150172 1.6886197  2936
[6985] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {ring.number=o}              0.3377646  0.9026316 0.3741999 0.9792974  2744
[6986] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3377646  0.8909091 0.3791236 1.4663180  2744
[6987] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {bruises=t}                  0.3377646  0.6103203 0.5534220 1.4686736  2744
[6988] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.3741999  1.0000000 0.3741999 1.0265353  3040
[6989] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.3741999  0.9004739 0.4155588 1.4820604  3040
[6990] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {bruises=t}                  0.3741999  0.6408094 0.5839488 1.5420426  3040
[6991] {bruises=t,                                                                                                
        stalk.surface.below.ring=s} => {veil.color=w}               0.3741999  1.0000000 0.3741999 1.0252398  3040
[6992] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3741999  0.9004739 0.4155588 1.4820604  3040
[6993] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {bruises=t}                  0.3741999  0.6408094 0.5839488 1.5420426  3040
[6994] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {gill.size=b}                0.3535204  0.8886139 0.3978336 1.2863683  2872
[6995] {bruises=t,                                                                                                
        gill.size=b}                => {stalk.surface.above.ring=s} 0.3535204  0.9522546 0.3712457 1.4946130  2872
[6996] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {bruises=t}                  0.3535204  0.7995546 0.4421467 1.9240466  2872
[6997] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.3850320  0.9678218 0.3978336 1.1542255  3128
[6998] {bruises=t,                                                                                                
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.3850320  0.9559902 0.4027573 1.5004761  3128
[6999] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {bruises=t}                  0.3850320  0.7070524 0.5445593 1.7014497  3128
[7000] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {ring.number=o}              0.3613983  0.9084158 0.3978336 0.9855730  2936
[7001] {bruises=t,                                                                                                
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3613983  0.9532468 0.3791236 1.4961701  2936
[7002] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {bruises=t}                  0.3613983  0.6199324 0.5829641 1.4918042  2936
[7003] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.3978336  1.0000000 0.3978336 1.0265353  3232
[7004] {bruises=t,                                                                                                
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.3978336  0.9573460 0.4155588 1.5026041  3232
[7005] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {bruises=t}                  0.3978336  0.6484751 0.6134909 1.5604893  3232
[7006] {bruises=t,                                                                                                
        stalk.surface.above.ring=s} => {veil.color=w}               0.3978336  1.0000000 0.3978336 1.0252398  3232
[7007] {bruises=t,                                                                                                
        veil.color=w}               => {stalk.surface.above.ring=s} 0.3978336  0.9573460 0.4155588 1.5026041  3232
[7008] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {bruises=t}                  0.3978336  0.6484751 0.6134909 1.5604893  3232
[7009] {bruises=t,                                                                                                
        gill.size=b}                => {gill.spacing=c}             0.3712457  1.0000000 0.3712457 1.1926013  3016
[7010] {bruises=t,                                                                                                
        gill.spacing=c}             => {gill.size=b}                0.3712457  0.9217604 0.4027573 1.3343516  3016
[7011] {gill.spacing=c,                                                                                           
        gill.size=b}                => {bruises=t}                  0.3712457  0.6619842 0.5608075 1.5929975  3016
[7012] {bruises=t,                                                                                                
        gill.size=b}                => {ring.number=o}              0.3348104  0.9018568 0.3712457 0.9784568  2720
[7013] {bruises=t,                                                                                                
        ring.number=o}              => {gill.size=b}                0.3348104  0.8831169 0.3791236 1.2784108  2720
[7014] {gill.size=b,                                                                                              
        ring.number=o}              => {bruises=t}                  0.3348104  0.5466238 0.6125062 1.3153945  2720
[7015] {bruises=t,                                                                                                
        gill.size=b}                => {gill.attachment=f}          0.3712457  1.0000000 0.3712457 1.0265353  3016
[7016] {bruises=t,                                                                                                
        gill.attachment=f}          => {gill.size=b}                0.3712457  0.8933649 0.4155588 1.2932460  3016
[7017] {gill.attachment=f,                                                                                        
        gill.size=b}                => {bruises=t}                  0.3712457  0.5583117 0.6649434 1.3435203  3016
[7018] {bruises=t,                                                                                                
        gill.size=b}                => {veil.color=w}               0.3712457  1.0000000 0.3712457 1.0252398  3016
[7019] {bruises=t,                                                                                                
        veil.color=w}               => {gill.size=b}                0.3712457  0.8933649 0.4155588 1.2932460  3016
[7020] {gill.size=b,                                                                                              
        veil.color=w}               => {bruises=t}                  0.3712457  0.5564576 0.6671590 1.3390584  3016
[7021] {bruises=t,                                                                                                
        gill.spacing=c}             => {ring.number=o}              0.3663220  0.9095355 0.4027573 0.9867877  2976
[7022] {bruises=t,                                                                                                
        ring.number=o}              => {gill.spacing=c}             0.3663220  0.9662338 0.3791236 1.1523316  2976
[7023] {bruises=t,                                                                                                
        gill.spacing=c}             => {gill.attachment=f}          0.4027573  1.0000000 0.4027573 1.0265353  3272
[7024] {bruises=t,                                                                                                
        gill.attachment=f}          => {gill.spacing=c}             0.4027573  0.9691943 0.4155588 1.1558624  3272
[7025] {bruises=t,                                                                                                
        gill.spacing=c}             => {veil.color=w}               0.4027573  1.0000000 0.4027573 1.0252398  3272
[7026] {bruises=t,                                                                                                
        veil.color=w}               => {gill.spacing=c}             0.4027573  0.9691943 0.4155588 1.1558624  3272
[7027] {bruises=t,                                                                                                
        ring.number=o}              => {gill.attachment=f}          0.3791236  1.0000000 0.3791236 1.0265353  3080
[7028] {bruises=t,                                                                                                
        gill.attachment=f}          => {ring.number=o}              0.3791236  0.9123223 0.4155588 0.9898112  3080
[7029] {bruises=t,                                                                                                
        ring.number=o}              => {veil.color=w}               0.3791236  1.0000000 0.3791236 1.0252398  3080
[7030] {bruises=t,                                                                                                
        veil.color=w}               => {ring.number=o}              0.3791236  0.9123223 0.4155588 0.9898112  3080
[7031] {bruises=t,                                                                                                
        gill.attachment=f}          => {veil.color=w}               0.4155588  1.0000000 0.4155588 1.0252398  3376
[7032] {bruises=t,                                                                                                
        veil.color=w}               => {gill.attachment=f}          0.4155588  1.0000000 0.4155588 1.0265353  3376
[7033] {odor=n,                                                                                                   
        stalk.shape=e}              => {class=e}                    0.1122600  0.8837209 0.1270310 1.7061190   912
[7034] {class=e,                                                                                                  
        stalk.shape=e}              => {odor=n}                     0.1122600  0.5643564 0.1989168 1.2995555   912
[7035] {odor=n,                                                                                                   
        stalk.shape=e}              => {gill.attachment=f}          0.1033973  0.8139535 0.1270310 0.8355520   840
[7036] {odor=n,                                                                                                   
        stalk.shape=e}              => {veil.color=w}               0.1024126  0.8062016 0.1270310 0.8265499   832
[7037] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {stalk.root=b}               0.1078287  0.5341463 0.2018710 1.1492068   876
[7038] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {cap.shape=x}                0.1078287  0.5264423 0.2048252 1.1698078   876
[7039] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {class=p}                    0.1216150  0.6024390 0.2018710 1.2497994   988
[7040] {class=p,                                                                                                  
        stalk.shape=e}              => {cap.shape=x}                0.1216150  0.5200000 0.2338749 1.1554923   988
[7041] {class=p,                                                                                                  
        cap.shape=x}                => {stalk.shape=e}              0.1216150  0.5784543 0.2102413 1.3365651   988
[7042] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {ring.type=p}                0.1068439  0.5292683 0.2018710 1.0836128   868
[7043] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {stalk.color.below.ring=w}   0.1073363  0.5317073 0.2018710 0.9853080   872
[7044] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {stalk.color.above.ring=w}   0.1102905  0.5463415 0.2018710 0.9942827   896
[7045] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {bruises=f}                  0.1329394  0.6585366 0.2018710 1.1267800  1080
[7046] {cap.shape=x,                                                                                              
        bruises=f}                  => {stalk.shape=e}              0.1329394  0.5294118 0.2511078 1.2232483  1080
[7047] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.1122600  0.5560976 0.2018710 0.8728239   912
[7048] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {gill.size=b}                0.1526342  0.7560976 0.2018710 1.0945361  1240
[7049] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {gill.spacing=c}             0.1762678  0.8731707 0.2018710 1.0413445  1432
[7050] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {ring.number=o}              0.1782373  0.8829268 0.2018710 0.9579190  1448
[7051] {stalk.shape=e,                                                                                            
        ring.number=o}              => {cap.shape=x}                0.1782373  0.5027778 0.3545052 1.1172228  1448
[7052] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {gill.attachment=f}          0.1952240  0.9670732 0.2018710 0.9927347  1586
[7053] {cap.shape=x,                                                                                              
        stalk.shape=e}              => {veil.color=w}               0.1959626  0.9707317 0.2018710 0.9952328  1592
[7054] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {class=p}                    0.1930084  0.9423077 0.2048252 1.9548794  1568
[7055] {class=p,                                                                                                  
        stalk.shape=e}              => {stalk.root=b}               0.1930084  0.8252632 0.2338749 1.7755397  1568
[7056] {class=p,                                                                                                  
        stalk.root=b}               => {stalk.shape=e}              0.1930084  0.8448276 0.2284589 1.9520419  1568
[7057] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {population=v}               0.1083210  0.5288462 0.2048252 1.0634520   880
[7058] {stalk.shape=e,                                                                                            
        population=v}               => {stalk.root=b}               0.1083210  0.7284768 0.1486952 1.5673055   880
[7059] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {bruises=f}                  0.1910389  0.9326923 0.2048252 1.5958703  1552
[7060] {bruises=f,                                                                                                
        stalk.shape=e}              => {stalk.root=b}               0.1910389  0.6891652 0.2772033 1.4827272  1552
[7061] {bruises=f,                                                                                                
        stalk.root=b}               => {stalk.shape=e}              0.1910389  1.0000000 0.1910389 2.3105802  1552
[7062] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {gill.size=b}                0.1742984  0.8509615 0.2048252 1.2318624  1416
[7063] {gill.size=b,                                                                                              
        stalk.shape=e}              => {stalk.root=b}               0.1742984  0.5007072 0.3481044 1.0772631  1416
[7064] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {gill.spacing=c}             0.1861152  0.9086538 0.2048252 1.0836618  1512
[7065] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {ring.number=o}              0.1900542  0.9278846 0.2048252 1.0066953  1544
[7066] {stalk.shape=e,                                                                                            
        ring.number=o}              => {stalk.root=b}               0.1900542  0.5361111 0.3545052 1.1534340  1544
[7067] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {gill.attachment=f}          0.2048252  1.0000000 0.2048252 1.0265353  1664
[7068] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {stalk.root=b}               0.2048252  0.5033273 0.4069424 1.0829001  1664
[7069] {stalk.shape=e,                                                                                            
        stalk.root=b}               => {veil.color=w}               0.2048252  1.0000000 0.2048252 1.0252398  1664
[7070] {stalk.shape=e,                                                                                            
        veil.color=w}               => {stalk.root=b}               0.2048252  0.5018094 0.4081733 1.0796344  1664
[7071] {class=p,                                                                                                  
        stalk.shape=e}              => {population=v}               0.1201379  0.5136842 0.2338749 1.0329630   976
[7072] {stalk.shape=e,                                                                                            
        population=v}               => {class=p}                    0.1201379  0.8079470 0.1486952 1.6761393   976
[7073] {class=p,                                                                                                  
        stalk.shape=e}              => {bruises=f}                  0.1925160  0.8231579 0.2338749 1.4084530  1564
[7074] {bruises=f,                                                                                                
        stalk.shape=e}              => {class=p}                    0.1925160  0.6944938 0.2772033 1.4407731  1564
[7075] {class=p,                                                                                                  
        stalk.shape=e}              => {gill.size=b}                0.1728213  0.7389474 0.2338749 1.0697093  1404
[7076] {class=p,                                                                                                  
        gill.size=b}                => {stalk.shape=e}              0.1728213  0.8297872 0.2082718 1.9172900  1404
[7077] {class=p,                                                                                                  
        stalk.shape=e}              => {gill.spacing=c}             0.2200886  0.9410526 0.2338749 1.1223006  1788
[7078] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {class=p}                    0.2200886  0.5827901 0.3776465 1.2090364  1788
[7079] {class=p,                                                                                                  
        stalk.shape=e}              => {ring.number=o}              0.2205810  0.9431579 0.2338749 1.0232659  1792
[7080] {stalk.shape=e,                                                                                            
        ring.number=o}              => {class=p}                    0.2205810  0.6222222 0.3545052 1.2908410  1792
[7081] {class=p,                                                                                                  
        stalk.shape=e}              => {gill.attachment=f}          0.2316593  0.9905263 0.2338749 1.0168102  1882
[7082] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {class=p}                    0.2316593  0.5692680 0.4069424 1.1809840  1882
[7083] {class=p,                                                                                                  
        stalk.shape=e}              => {veil.color=w}               0.2328902  0.9957895 0.2338749 1.0209230  1892
[7084] {stalk.shape=e,                                                                                            
        veil.color=w}               => {class=p}                    0.2328902  0.5705669 0.4081733 1.1836787  1892
[7085] {stalk.shape=e,                                                                                            
        ring.type=p}                => {class=e}                    0.1634663  0.7155172 0.2284589 1.3813836  1328
[7086] {class=e,                                                                                                  
        stalk.shape=e}              => {ring.type=p}                0.1634663  0.8217822 0.1989168 1.6824996  1328
[7087] {stalk.shape=e,                                                                                            
        ring.type=p}                => {stalk.color.below.ring=w}   0.2028557  0.8879310 0.2284589 1.6454269  1648
[7088] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {ring.type=p}                0.2028557  0.9196429 0.2205810 1.8828575  1648
[7089] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {stalk.shape=e}              0.2028557  0.6319018 0.3210241 1.4600599  1648
[7090] {stalk.shape=e,                                                                                            
        ring.type=p}                => {stalk.color.above.ring=w}   0.2028557  0.8879310 0.2284589 1.6159390  1648
[7091] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {ring.type=p}                0.2028557  0.8803419 0.2304284 1.8023935  1648
[7092] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {stalk.shape=e}              0.2028557  0.6319018 0.3210241 1.4600599  1648
[7093] {stalk.shape=e,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.1851305  0.8103448 0.2284589 1.3337199  1504
[7094] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {ring.type=p}                0.1851305  0.8744186 0.2117184 1.7902663  1504
[7095] {stalk.shape=e,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2087642  0.9137931 0.2284589 1.4342456  1696
[7096] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {ring.type=p}                0.2087642  0.8653061 0.2412605 1.7716096  1696
[7097] {stalk.shape=e,                                                                                            
        ring.type=p}                => {gill.size=b}                0.1605121  0.7025862 0.2284589 1.0170724  1304
[7098] {stalk.shape=e,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.1802068  0.7887931 0.2284589 0.9407157  1464
[7099] {stalk.shape=e,                                                                                            
        ring.type=p}                => {ring.number=o}              0.1782373  0.7801724 0.2284589 0.8464371  1448
[7100] {stalk.shape=e,                                                                                            
        ring.number=o}              => {ring.type=p}                0.1782373  0.5027778 0.3545052 1.0293767  1448
[7101] {stalk.shape=e,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.2048252  0.8965517 0.2284589 0.9203420  1664
[7102] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {ring.type=p}                0.2048252  0.5033273 0.4069424 1.0305017  1664
[7103] {stalk.shape=e,                                                                                            
        ring.type=p}                => {veil.color=w}               0.2048252  0.8965517 0.2284589 0.9191805  1664
[7104] {stalk.shape=e,                                                                                            
        veil.color=w}               => {ring.type=p}                0.2048252  0.5018094 0.4081733 1.0273941  1664
[7105] {stalk.shape=e,                                                                                            
        population=v}               => {bruises=f}                  0.1221073  0.8211921 0.1486952 1.4050894   992
[7106] {stalk.shape=e,                                                                                            
        population=v}               => {gill.size=b}                0.1024126  0.6887417 0.1486952 0.9970310   832
[7107] {stalk.shape=e,                                                                                            
        population=v}               => {gill.spacing=c}             0.1368784  0.9205298 0.1486952 1.0978250  1112
[7108] {stalk.shape=e,                                                                                            
        population=v}               => {ring.number=o}              0.1378631  0.9271523 0.1486952 1.0059008  1120
[7109] {stalk.shape=e,                                                                                            
        population=v}               => {gill.attachment=f}          0.1368784  0.9205298 0.1486952 0.9449563  1112
[7110] {stalk.shape=e,                                                                                            
        population=v}               => {veil.color=w}               0.1368784  0.9205298 0.1486952 0.9437638  1112
[7111] {class=e,                                                                                                  
        stalk.shape=e}              => {stalk.color.below.ring=w}   0.1555884  0.7821782 0.1989168 1.4494562  1264
[7112] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {class=e}                    0.1555884  0.7053571 0.2205810 1.3617684  1264
[7113] {class=e,                                                                                                  
        stalk.shape=e}              => {stalk.color.above.ring=w}   0.1614968  0.8118812 0.1989168 1.4775365  1312
[7114] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {class=e}                    0.1614968  0.7008547 0.2304284 1.3530759  1312
[7115] {class=e,                                                                                                  
        stalk.shape=e}              => {stalk.surface.below.ring=s} 0.1467258  0.7376238 0.1989168 1.2140307  1192
[7116] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {class=e}                    0.1467258  0.6930233 0.2117184 1.3379565  1192
[7117] {class=e,                                                                                                  
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.1762678  0.8861386 0.1989168 1.3908404  1432
[7118] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {class=e}                    0.1762678  0.7306122 0.2412605 1.4105261  1432
[7119] {class=e,                                                                                                  
        stalk.shape=e}              => {gill.size=b}                0.1752831  0.8811881 0.1989168 1.2756187  1424
[7120] {gill.size=b,                                                                                              
        stalk.shape=e}              => {class=e}                    0.1752831  0.5035361 0.3481044 0.9721309  1424
[7121] {class=e,                                                                                                  
        stalk.shape=e}              => {gill.spacing=c}             0.1575579  0.7920792 0.1989168 0.9446347  1280
[7122] {class=e,                                                                                                  
        stalk.shape=e}              => {ring.number=o}              0.1339242  0.6732673 0.1989168 0.7304519  1088
[7123] {class=e,                                                                                                  
        stalk.shape=e}              => {gill.attachment=f}          0.1752831  0.8811881 0.1989168 0.9045707  1424
[7124] {class=e,                                                                                                  
        stalk.shape=e}              => {veil.color=w}               0.1752831  0.8811881 0.1989168 0.9034291  1424
[7125] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2146726  0.9732143 0.2205810 1.7711454  1744
[7126] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2146726  0.9316239 0.2304284 1.7263943  1744
[7127] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1733136  0.7857143 0.2205810 1.2931813  1408
[7128] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1733136  0.8186047 0.2117184 1.5169581  1408
[7129] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.2028557  0.9196429 0.2205810 1.4434271  1648
[7130] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.2028557  0.8408163 0.2412605 1.5581186  1648
[7131] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.shape=e}              0.2028557  0.5024390 0.4037420 1.1609257  1648
[7132] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {gill.size=b}                0.1467258  0.6651786 0.2205810 0.9629207  1192
[7133] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1723289  0.7812500 0.2205810 0.9317198  1400
[7134] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {ring.number=o}              0.1605121  0.7276786 0.2205810 0.7894846  1304
[7135] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2205810  1.0000000 0.2205810 1.0265353  1792
[7136] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {stalk.color.below.ring=w}   0.2205810  0.5420448 0.4069424 1.0044643  1792
[7137] {stalk.shape=e,                                                                                            
        stalk.color.below.ring=w}   => {veil.color=w}               0.2205810  1.0000000 0.2205810 1.0252398  1792
[7138] {stalk.shape=e,                                                                                            
        veil.color=w}               => {stalk.color.below.ring=w}   0.2205810  0.5404101 0.4081733 1.0014352  1792
[7139] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1762678  0.7649573 0.2304284 1.2590180  1432
[7140] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1762678  0.8325581 0.2117184 1.5151663  1432
[7141] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.2058099  0.8931624 0.2304284 1.4018646  1672
[7142] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.2058099  0.8530612 0.2412605 1.5524797  1672
[7143] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.shape=e}              0.2058099  0.5060533 0.4066962 1.1692767  1672
[7144] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {gill.size=b}                0.1467258  0.6367521 0.2304284 0.9217702  1192
[7145] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1762678  0.7649573 0.2304284 0.9122890  1432
[7146] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {ring.number=o}              0.1703594  0.7393162 0.2304284 0.8021107  1384
[7147] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2304284  1.0000000 0.2304284 1.0265353  1872
[7148] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {stalk.color.above.ring=w}   0.2304284  0.5662432 0.4069424 1.0305017  1872
[7149] {stalk.shape=e,                                                                                            
        stalk.color.above.ring=w}   => {veil.color=w}               0.2304284  1.0000000 0.2304284 1.0252398  1872
[7150] {stalk.shape=e,                                                                                            
        veil.color=w}               => {stalk.color.above.ring=w}   0.2304284  0.5645356 0.4081733 1.0273941  1872
[7151] {bruises=f,                                                                                                
        stalk.shape=e}              => {gill.size=b}                0.2250123  0.8117229 0.2772033 1.1750600  1828
[7152] {gill.size=b,                                                                                              
        stalk.shape=e}              => {bruises=f}                  0.2250123  0.6463932 0.3481044 1.1060022  1828
[7153] {bruises=f,                                                                                                
        gill.size=b}                => {stalk.shape=e}              0.2250123  0.7041602 0.3195470 1.6270187  1828
[7154] {bruises=f,                                                                                                
        stalk.shape=e}              => {gill.spacing=c}             0.2230428  0.8046181 0.2772033 0.9595886  1812
[7155] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {bruises=f}                  0.2230428  0.5906128 0.3776465 1.0105599  1812
[7156] {bruises=f,                                                                                                
        gill.spacing=c}             => {stalk.shape=e}              0.2230428  0.5118644 0.4357459 1.1827038  1812
[7157] {bruises=f,                                                                                                
        stalk.shape=e}              => {ring.number=o}              0.2353520  0.8490231 0.2772033 0.9211356  1912
[7158] {stalk.shape=e,                                                                                            
        ring.number=o}              => {bruises=f}                  0.2353520  0.6638889 0.3545052 1.1359379  1912
[7159] {bruises=f,                                                                                                
        stalk.shape=e}              => {gill.attachment=f}          0.2513540  0.9067496 0.2772033 0.9308104  2042
[7160] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {bruises=f}                  0.2513540  0.6176649 0.4069424 1.0568469  2042
[7161] {bruises=f,                                                                                                
        stalk.shape=e}              => {veil.color=w}               0.2525849  0.9111901 0.2772033 0.9341883  2052
[7162] {stalk.shape=e,                                                                                            
        veil.color=w}               => {bruises=f}                  0.2525849  0.6188179 0.4081733 1.0588198  2052
[7163] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.2013786  0.9511628 0.2117184 1.4928992  1636
[7164] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.2013786  0.8346939 0.2412605 1.3737952  1636
[7165] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {gill.size=b}                0.1408173  0.6651163 0.2117184 0.9628305  1144
[7166] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1782373  0.8418605 0.2117184 1.0040039  1448
[7167] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {ring.number=o}              0.1575579  0.7441860 0.2117184 0.8073942  1280
[7168] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1880847  0.8883721 0.2117184 0.9119453  1528
[7169] {stalk.shape=e,                                                                                            
        stalk.surface.below.ring=s} => {veil.color=w}               0.1880847  0.8883721 0.2117184 0.9107944  1528
[7170] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {gill.size=b}                0.1644510  0.6816327 0.2412605 0.9867398  1336
[7171] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2077794  0.8612245 0.2412605 1.0270974  1688
[7172] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.2077794  0.5501956 0.3776465 0.8635604  1688
[7173] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {ring.number=o}              0.1871000  0.7755102 0.2412605 0.8413789  1520
[7174] {stalk.shape=e,                                                                                            
        ring.number=o}              => {stalk.surface.above.ring=s} 0.1871000  0.5277778 0.3545052 0.8283745  1520
[7175] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2176268  0.9020408 0.2412605 0.9259767  1768
[7176] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {stalk.surface.above.ring=s} 0.2176268  0.5347852 0.4069424 0.8393731  1768
[7177] {stalk.shape=e,                                                                                            
        stalk.surface.above.ring=s} => {veil.color=w}               0.2176268  0.9020408 0.2412605 0.9248081  1768
[7178] {stalk.shape=e,                                                                                            
        veil.color=w}               => {stalk.surface.above.ring=s} 0.2176268  0.5331725 0.4081733 0.8368418  1768
[7179] {gill.size=b,                                                                                              
        stalk.shape=e}              => {gill.spacing=c}             0.3126539  0.8981612 0.3481044 1.0711483  2540
[7180] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {gill.size=b}                0.3126539  0.8279009 0.3776465 1.1984795  2540
[7181] {gill.spacing=c,                                                                                           
        gill.size=b}                => {stalk.shape=e}              0.3126539  0.5575066 0.5608075 1.2881637  2540
[7182] {gill.size=b,                                                                                              
        stalk.shape=e}              => {ring.number=o}              0.2698178  0.7751061 0.3481044 0.8409404  2192
[7183] {stalk.shape=e,                                                                                            
        ring.number=o}              => {gill.size=b}                0.2698178  0.7611111 0.3545052 1.1017938  2192
[7184] {gill.size=b,                                                                                              
        stalk.shape=e}              => {gill.attachment=f}          0.3222550  0.9257426 0.3481044 0.9503074  2618
[7185] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {gill.size=b}                0.3222550  0.7918935 0.4069424 1.1463548  2618
[7186] {gill.size=b,                                                                                              
        stalk.shape=e}              => {veil.color=w}               0.3244707  0.9321075 0.3481044 0.9556337  2636
[7187] {stalk.shape=e,                                                                                            
        veil.color=w}               => {gill.size=b}                0.3244707  0.7949337 0.4081733 1.1507557  2636
[7188] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {ring.number=o}              0.3348104  0.8865711 0.3776465 0.9618728  2720
[7189] {stalk.shape=e,                                                                                            
        ring.number=o}              => {gill.spacing=c}             0.3348104  0.9444444 0.3545052 1.1263457  2720
[7190] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {gill.attachment=f}          0.3517971  0.9315515 0.3776465 0.9562705  2858
[7191] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {gill.spacing=c}             0.3517971  0.8644888 0.4069424 1.0309905  2858
[7192] {gill.spacing=c,                                                                                           
        stalk.shape=e}              => {veil.color=w}               0.3540128  0.9374185 0.3776465 0.9610787  2876
[7193] {stalk.shape=e,                                                                                            
        veil.color=w}               => {gill.spacing=c}             0.3540128  0.8673100 0.4081733 1.0343550  2876
[7194] {stalk.shape=e,                                                                                            
        ring.number=o}              => {gill.attachment=f}          0.3308715  0.9333333 0.3545052 0.9580996  2688
[7195] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {ring.number=o}              0.3308715  0.8130672 0.4069424 0.8821257  2688
[7196] {stalk.shape=e,                                                                                            
        ring.number=o}              => {veil.color=w}               0.3298868  0.9305556 0.3545052 0.9540426  2680
[7197] {stalk.shape=e,                                                                                            
        veil.color=w}               => {ring.number=o}              0.3298868  0.8082027 0.4081733 0.8768481  2680
[7198] {gill.attachment=f,                                                                                        
        stalk.shape=e}              => {veil.color=w}               0.4059577  0.9975802 0.4069424 1.0227589  3298
[7199] {stalk.shape=e,                                                                                            
        veil.color=w}               => {gill.attachment=f}          0.4059577  0.9945718 0.4081733 1.0209630  3298
[7200] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.root=b}               0.1107829  0.5784062 0.1915313 1.2444311   900
[7201] {cap.shape=x,                                                                                              
        odor=n}                     => {ring.type=p}                0.1304776  0.6812339 0.1915313 1.3947441  1060
[7202] {cap.shape=x,                                                                                              
        ring.type=p}                => {odor=n}                     0.1304776  0.5509356 0.2368291 1.2686509  1060
[7203] {cap.shape=x,                                                                                              
        odor=n}                     => {class=e}                    0.1905465  0.9948586 0.1915313 1.9206824  1548
[7204] {class=e,                                                                                                  
        cap.shape=x}                => {odor=n}                     0.1905465  0.7946612 0.2397834 1.8298831  1548
[7205] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.color.below.ring=w}   0.1073363  0.5604113 0.1915313 1.0384994   872
[7206] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.color.above.ring=w}   0.1102905  0.5758355 0.1915313 1.0479586   896
[7207] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.shape=t}              0.1536189  0.8020566 0.1915313 1.4140424  1248
[7208] {odor=n,                                                                                                   
        stalk.shape=t}              => {cap.shape=x}                0.1536189  0.5000000 0.3072378 1.1110503  1248
[7209] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {odor=n}                     0.1536189  0.6190476 0.2481536 1.4254940  1248
[7210] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.surface.below.ring=s} 0.1565731  0.8174807 0.1915313 1.3454646  1272
[7211] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {odor=n}                     0.1565731  0.5638298 0.2776957 1.2983427  1272
[7212] {cap.shape=x,                                                                                              
        odor=n}                     => {stalk.surface.above.ring=s} 0.1595273  0.8329049 0.1915313 1.3072873  1296
[7213] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {odor=n}                     0.1595273  0.5454545 0.2924668 1.2560297  1296
[7214] {cap.shape=x,                                                                                              
        odor=n}                     => {gill.size=b}                0.1816839  0.9485861 0.1915313 1.3731849  1476
[7215] {cap.shape=x,                                                                                              
        gill.size=b}                => {odor=n}                     0.1816839  0.5607903 0.3239783 1.2913436  1476
[7216] {cap.shape=x,                                                                                              
        odor=n}                     => {gill.spacing=c}             0.1304776  0.6812339 0.1915313 0.8124405  1060
[7217] {cap.shape=x,                                                                                              
        odor=n}                     => {ring.number=o}              0.1693747  0.8843188 0.1915313 0.9594292  1376
[7218] {cap.shape=x,                                                                                              
        odor=n}                     => {gill.attachment=f}          0.1856228  0.9691517 0.1915313 0.9948684  1508
[7219] {cap.shape=x,                                                                                              
        odor=n}                     => {veil.color=w}               0.1856228  0.9691517 0.1915313 0.9936128  1508
[7220] {odor=n,                                                                                                   
        stalk.root=b}               => {ring.type=p}                0.2284589  0.9747899 0.2343673 1.9957644  1856
[7221] {odor=n,                                                                                                   
        ring.type=p}                => {stalk.root=b}               0.2284589  0.7631579 0.2993599 1.6419213  1856
[7222] {stalk.root=b,                                                                                             
        ring.type=p}                => {odor=n}                     0.2284589  0.7631579 0.2993599 1.7573398  1856
[7223] {odor=n,                                                                                                   
        stalk.root=b}               => {population=v}               0.1230921  0.5252101 0.2343673 1.0561403  1000
[7224] {odor=n,                                                                                                   
        population=v}               => {stalk.root=b}               0.1230921  0.8333333 0.1477105 1.7929025  1000
[7225] {stalk.root=b,                                                                                             
        population=v}               => {odor=n}                     0.1230921  0.5040323 0.2442147 1.1606457  1000
[7226] {odor=n,                                                                                                   
        stalk.root=b}               => {class=e}                    0.2245199  0.9579832 0.2343673 1.8494904  1824
[7227] {class=e,                                                                                                  
        odor=n}                     => {stalk.root=b}               0.2245199  0.5352113 0.4194978 1.1514980  1824
[7228] {class=e,                                                                                                  
        stalk.root=b}               => {odor=n}                     0.2245199  0.9500000 0.2363368 2.1875850  1824
[7229] {odor=n,                                                                                                   
        stalk.root=b}               => {stalk.shape=t}              0.2127031  0.9075630 0.2343673 1.6000525  1728
[7230] {odor=n,                                                                                                   
        stalk.shape=t}              => {stalk.root=b}               0.2127031  0.6923077 0.3072378 1.4894883  1728
[7231] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {odor=n}                     0.2127031  0.8181818 0.2599705 1.8840445  1728
[7232] {odor=n,                                                                                                   
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2294436  0.9789916 0.2343673 1.6112901  1864
[7233] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2294436  0.6490251 0.3535204 1.3963664  1864
[7234] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {odor=n}                     0.2294436  0.8118467 0.2826194 1.8694565  1864
[7235] {odor=n,                                                                                                   
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2294436  0.9789916 0.2343673 1.5365780  1864
[7236] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {stalk.root=b}               0.2294436  0.6383562 0.3594289 1.3734125  1864
[7237] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {odor=n}                     0.2294436  0.8118467 0.2826194 1.8694565  1864
[7238] {odor=n,                                                                                                   
        stalk.root=b}               => {gill.size=b}                0.2274742  0.9705882 0.2343673 1.4050354  1848
[7239] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.root=b}               0.2274742  0.5620438 0.4047267 1.2092277  1848
[7240] {gill.size=b,                                                                                              
        stalk.root=b}               => {odor=n}                     0.2274742  0.5384615 0.4224520 1.2399267  1848
[7241] {odor=n,                                                                                                   
        stalk.root=b}               => {gill.spacing=c}             0.2274742  0.9705882 0.2343673 1.1575248  1848
[7242] {odor=n,                                                                                                   
        gill.spacing=c}             => {stalk.root=b}               0.2274742  0.7674419 0.2964057 1.6511382  1848
[7243] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {odor=n}                     0.2274742  0.5238095 0.4342688 1.2061872  1848
[7244] {odor=n,                                                                                                   
        stalk.root=b}               => {ring.number=o}              0.2195963  0.9369748 0.2343673 1.0165576  1784
[7245] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.root=b}               0.2195963  0.6092896 0.3604136 1.3108763  1784
[7246] {odor=n,                                                                                                   
        stalk.root=b}               => {gill.attachment=f}          0.2343673  1.0000000 0.2343673 1.0265353  1904
[7247] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.root=b}               0.2343673  0.5707434 0.4106352 1.2279448  1904
[7248] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {odor=n}                     0.2343673  0.5042373 0.4647957 1.1611178  1904
[7249] {odor=n,                                                                                                   
        stalk.root=b}               => {veil.color=w}               0.2343673  1.0000000 0.2343673 1.0252398  1904
[7250] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.root=b}               0.2343673  0.5721154 0.4096504 1.2308966  1904
[7251] {stalk.root=b,                                                                                             
        veil.color=w}               => {odor=n}                     0.2343673  0.5042373 0.4647957 1.1611178  1904
[7252] {odor=n,                                                                                                   
        population=v}               => {ring.type=p}                0.1349089  0.9133333 0.1477105 1.8699395  1096
[7253] {ring.type=p,                                                                                              
        population=v}               => {odor=n}                     0.1349089  0.7025641 0.1920236 1.6178092  1096
[7254] {odor=n,                                                                                                   
        ring.type=p}                => {class=e}                    0.2895126  0.9671053 0.2993599 1.8671015  2352
[7255] {class=e,                                                                                                  
        odor=n}                     => {ring.type=p}                0.2895126  0.6901408 0.4194978 1.4129799  2352
[7256] {class=e,                                                                                                  
        ring.type=p}                => {odor=n}                     0.2895126  0.7461929 0.3879862 1.7182741  2352
[7257] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {ring.type=p}                0.1319547  0.5403226 0.2442147 1.1062451  1072
[7258] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {ring.type=p}                0.1319547  0.5193798 0.2540620 1.0633674  1072
[7259] {odor=n,                                                                                                   
        ring.type=p}                => {stalk.shape=t}              0.2127031  0.7105263 0.2993599 1.2526727  1728
[7260] {odor=n,                                                                                                   
        stalk.shape=t}              => {ring.type=p}                0.2127031  0.6923077 0.3072378 1.4174163  1728
[7261] {stalk.shape=t,                                                                                            
        ring.type=p}                => {odor=n}                     0.2127031  0.8181818 0.2599705 1.8840445  1728
[7262] {odor=n,                                                                                                   
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2796652  0.9342105 0.2993599 1.5375864  2272
[7263] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {ring.type=p}                0.2796652  0.7910864 0.3535204 1.6196536  2272
[7264] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {odor=n}                     0.2796652  0.6543779 0.4273757 1.5068497  2272
[7265] {odor=n,                                                                                                   
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2796652  0.9342105 0.2993599 1.4662918  2272
[7266] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {ring.type=p}                0.2796652  0.7780822 0.3594289 1.5930292  2272
[7267] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {odor=n}                     0.2796652  0.6200873 0.4510094 1.4278882  2272
[7268] {odor=n,                                                                                                   
        ring.type=p}                => {gill.size=b}                0.2865583  0.9572368 0.2993599 1.3857078  2328
[7269] {odor=n,                                                                                                   
        gill.size=b}                => {ring.type=p}                0.2865583  0.7080292 0.4047267 1.4496041  2328
[7270] {gill.size=b,                                                                                              
        ring.type=p}                => {odor=n}                     0.2865583  0.7012048 0.4086657 1.6146791  2328
[7271] {odor=n,                                                                                                   
        ring.type=p}                => {gill.spacing=c}             0.2629247  0.8782895 0.2993599 1.0474492  2136
[7272] {odor=n,                                                                                                   
        gill.spacing=c}             => {ring.type=p}                0.2629247  0.8870432 0.2964057 1.8161136  2136
[7273] {gill.spacing=c,                                                                                           
        ring.type=p}                => {odor=n}                     0.2629247  0.6137931 0.4283604 1.4133943  2136
[7274] {odor=n,                                                                                                   
        ring.type=p}                => {ring.number=o}              0.2491384  0.8322368 0.2993599 0.9029236  2024
[7275] {odor=n,                                                                                                   
        ring.number=o}              => {ring.type=p}                0.2491384  0.6912568 0.3604136 1.4152647  2024
[7276] {ring.number=o,                                                                                            
        ring.type=p}                => {odor=n}                     0.2491384  0.5685393 0.4382078 1.3091875  2024
[7277] {odor=n,                                                                                                   
        ring.type=p}                => {gill.attachment=f}          0.2757262  0.9210526 0.2993599 0.9454930  2240
[7278] {odor=n,                                                                                                   
        gill.attachment=f}          => {ring.type=p}                0.2757262  0.6714628 0.4106352 1.3747389  2240
[7279] {gill.attachment=f,                                                                                        
        ring.type=p}                => {odor=n}                     0.2757262  0.5932203 0.4647957 1.3660210  2240
[7280] {odor=n,                                                                                                   
        ring.type=p}                => {veil.color=w}               0.2757262  0.9210526 0.2993599 0.9442998  2240
[7281] {odor=n,                                                                                                   
        veil.color=w}               => {ring.type=p}                0.2757262  0.6730769 0.4096504 1.3780436  2240
[7282] {veil.color=w,                                                                                             
        ring.type=p}                => {odor=n}                     0.2757262  0.5932203 0.4647957 1.3660210  2240
[7283] {odor=n,                                                                                                   
        population=v}               => {class=e}                    0.1349089  0.9133333 0.1477105 1.7632890  1096
[7284] {class=e,                                                                                                  
        population=v}               => {odor=n}                     0.1349089  0.9194631 0.1467258 2.1172670  1096
[7285] {odor=n,                                                                                                   
        population=v}               => {stalk.shape=t}              0.1063516  0.7200000 0.1477105 1.2693750   864
[7286] {odor=n,                                                                                                   
        population=v}               => {stalk.surface.below.ring=s} 0.1378631  0.9333333 0.1477105 1.5361426  1120
[7287] {odor=n,                                                                                                   
        population=v}               => {stalk.surface.above.ring=s} 0.1408173  0.9533333 0.1477105 1.4963060  1144
[7288] {odor=n,                                                                                                   
        population=v}               => {gill.size=b}                0.1290005  0.8733333 0.1477105 1.2642480  1048
[7289] {gill.size=b,                                                                                              
        population=v}               => {odor=n}                     0.1290005  0.5695652 0.2264894 1.3115498  1048
[7290] {odor=n,                                                                                                   
        population=v}               => {gill.spacing=c}             0.1418021  0.9600000 0.1477105 1.1448972  1152
[7291] {odor=n,                                                                                                   
        population=v}               => {ring.number=o}              0.1368784  0.9266667 0.1477105 1.0053739  1112
[7292] {odor=n,                                                                                                   
        population=v}               => {gill.attachment=f}          0.1358936  0.9200000 0.1477105 0.9444124  1104
[7293] {odor=n,                                                                                                   
        population=v}               => {veil.color=w}               0.1358936  0.9200000 0.1477105 0.9432206  1104
[7294] {class=e,                                                                                                  
        odor=n}                     => {stalk.color.below.ring=w}   0.2343673  0.5586854 0.4194978 1.0353012  1904
[7295] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {class=e}                    0.2343673  0.9596774 0.2442147 1.8527613  1904
[7296] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {odor=n}                     0.2343673  0.7041420 0.3328410 1.6214427  1904
[7297] {class=e,                                                                                                  
        odor=n}                     => {stalk.color.above.ring=w}   0.2402757  0.5727700 0.4194978 1.0423797  1952
[7298] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {class=e}                    0.2402757  0.9457364 0.2540620 1.8258467  1952
[7299] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {odor=n}                     0.2402757  0.7093023 0.3387494 1.6333254  1952
[7300] {class=e,                                                                                                  
        odor=n}                     => {stalk.shape=t}              0.3072378  0.7323944 0.4194978 1.2912265  2496
[7301] {odor=n,                                                                                                   
        stalk.shape=t}              => {class=e}                    0.3072378  1.0000000 0.3072378 1.9306084  2496
[7302] {class=e,                                                                                                  
        stalk.shape=t}              => {odor=n}                     0.3072378  0.9629630 0.3190547 2.2174351  2496
[7303] {bruises=f,                                                                                                
        odor=n}                     => {class=e}                    0.1792221  0.9732620 0.1841457 1.8789878  1456
[7304] {class=e,                                                                                                  
        bruises=f}                  => {odor=n}                     0.1792221  1.0000000 0.1792221 2.3027211  1456
[7305] {class=e,                                                                                                  
        odor=n}                     => {stalk.surface.below.ring=s} 0.3436731  0.8192488 0.4194978 1.3483747  2792
[7306] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {class=e}                    0.3436731  0.9721448 0.3535204 1.8768310  2792
[7307] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {odor=n}                     0.3436731  0.8211765 0.4185130 1.8909404  2792
[7308] {class=e,                                                                                                  
        odor=n}                     => {stalk.surface.above.ring=s} 0.3495815  0.8333333 0.4194978 1.3079598  2840
[7309] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {class=e}                    0.3495815  0.9726027 0.3594289 1.8777150  2840
[7310] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {odor=n}                     0.3495815  0.7802198 0.4480551 1.7966285  2840
[7311] {class=e,                                                                                                  
        odor=n}                     => {gill.size=b}                0.3958641  0.9436620 0.4194978 1.3660566  3216
[7312] {odor=n,                                                                                                   
        gill.size=b}                => {class=e}                    0.3958641  0.9781022 0.4047267 1.8883323  3216
[7313] {class=e,                                                                                                  
        gill.size=b}                => {odor=n}                     0.3958641  0.8204082 0.4825209 1.8891712  3216
[7314] {class=e,                                                                                                  
        odor=n}                     => {gill.spacing=c}             0.2836041  0.6760563 0.4194978 0.8062657  2304
[7315] {odor=n,                                                                                                   
        gill.spacing=c}             => {class=e}                    0.2836041  0.9568106 0.2964057 1.8472266  2304
[7316] {class=e,                                                                                                  
        gill.spacing=c}             => {odor=n}                     0.2836041  0.7659574 0.3702610 1.7637864  2304
[7317] {class=e,                                                                                                  
        odor=n}                     => {ring.number=o}              0.3545052  0.8450704 0.4194978 0.9168472  2880
[7318] {odor=n,                                                                                                   
        ring.number=o}              => {class=e}                    0.3545052  0.9836066 0.3604136 1.8989590  2880
[7319] {class=e,                                                                                                  
        ring.number=o}              => {odor=n}                     0.3545052  0.7826087 0.4529788 1.8021295  2880
[7320] {class=e,                                                                                                  
        odor=n}                     => {gill.attachment=f}          0.3958641  0.9436620 0.4194978 0.9687023  3216
[7321] {odor=n,                                                                                                   
        gill.attachment=f}          => {class=e}                    0.3958641  0.9640288 0.4106352 1.8611620  3216
[7322] {class=e,                                                                                                  
        gill.attachment=f}          => {odor=n}                     0.3958641  0.8007968 0.4943378 1.8440117  3216
[7323] {class=e,                                                                                                  
        odor=n}                     => {veil.color=w}               0.3958641  0.9436620 0.4194978 0.9674798  3216
[7324] {odor=n,                                                                                                   
        veil.color=w}               => {class=e}                    0.3958641  0.9663462 0.4096504 1.8656360  3216
[7325] {class=e,                                                                                                  
        veil.color=w}               => {odor=n}                     0.3958641  0.8007968 0.4943378 1.8440117  3216
[7326] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1910389  0.7822581 0.2442147 1.4236256  1552
[7327] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1910389  0.7519380 0.2540620 1.3934179  1552
[7328] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1654357  0.6774194 0.2442147 1.1943044  1344
[7329] {odor=n,                                                                                                   
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1654357  0.5384615 0.3072378 0.9978243  1344
[7330] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {odor=n}                     0.1654357  0.5185185 0.3190547 1.1940035  1344
[7331] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {bruises=f}                  0.1477105  0.6048387 0.2442147 1.0349009  1200
[7332] {bruises=f,                                                                                                
        odor=n}                     => {stalk.color.below.ring=w}   0.1477105  0.8021390 0.1841457 1.4864456  1200
[7333] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {odor=n}                     0.1477105  0.5319149 0.2776957 1.2248516  1200
[7334] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1733136  0.7096774 0.2442147 1.1680347  1408
[7335] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1792221  0.7338710 0.2442147 1.1518485  1456
[7336] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {gill.size=b}                0.2255047  0.9233871 0.2442147 1.3367065  1832
[7337] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.color.below.ring=w}   0.2255047  0.5571776 0.4047267 1.0325071  1832
[7338] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {odor=n}                     0.2255047  0.6487252 0.3476120 1.4938332  1832
[7339] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {ring.number=o}              0.1841457  0.7540323 0.2442147 0.8180767  1496
[7340] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.color.below.ring=w}   0.1841457  0.5109290 0.3604136 0.9468036  1496
[7341] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2442147  1.0000000 0.2442147 1.0265353  1984
[7342] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.2442147  0.5947242 0.4106352 1.1020848  1984
[7343] {odor=n,                                                                                                   
        stalk.color.below.ring=w}   => {veil.color=w}               0.2442147  1.0000000 0.2442147 1.0252398  1984
[7344] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.color.below.ring=w}   0.2442147  0.5961538 0.4096504 1.1047340  1984
[7345] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1654357  0.6511628 0.2540620 1.1480136  1344
[7346] {odor=n,                                                                                                   
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1654357  0.5384615 0.3072378 0.9799421  1344
[7347] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {odor=n}                     0.1654357  0.5185185 0.3190547 1.1940035  1344
[7348] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {bruises=f}                  0.1575579  0.6201550 0.2540620 1.0611077  1280
[7349] {bruises=f,                                                                                                
        odor=n}                     => {stalk.color.above.ring=w}   0.1575579  0.8556150 0.1841457 1.5571272  1280
[7350] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {odor=n}                     0.1575579  0.5479452 0.2875431 1.2617650  1280
[7351] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1762678  0.6937984 0.2540620 1.1419000  1432
[7352] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1821763  0.7170543 0.2540620 1.1254538  1480
[7353] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1821763  0.5068493 0.3594289 0.9224113  1480
[7354] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {gill.size=b}                0.2255047  0.8875969 0.2540620 1.2848962  1832
[7355] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.color.above.ring=w}   0.2255047  0.5571776 0.4047267 1.0140033  1832
[7356] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {odor=n}                     0.2255047  0.6487252 0.3476120 1.4938332  1832
[7357] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {ring.number=o}              0.1939931  0.7635659 0.2540620 0.8284200  1576
[7358] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.color.above.ring=w}   0.1939931  0.5382514 0.3604136 0.9795596  1576
[7359] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2540620  1.0000000 0.2540620 1.0265353  2064
[7360] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.2540620  0.6187050 0.4106352 1.1259766  2064
[7361] {odor=n,                                                                                                   
        stalk.color.above.ring=w}   => {veil.color=w}               0.2540620  1.0000000 0.2540620 1.0252398  2064
[7362] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.color.above.ring=w}   0.2540620  0.6201923 0.4096504 1.1286833  2064
[7363] {odor=n,                                                                                                   
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.2599705  0.8461538 0.3072378 1.3926568  2112
[7364] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.2599705  0.7353760 0.3535204 1.2964833  2112
[7365] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {odor=n}                     0.2599705  0.6567164 0.3958641 1.5122347  2112
[7366] {odor=n,                                                                                                   
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.2599705  0.8461538 0.3072378 1.3280823  2112
[7367] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.2599705  0.7232877 0.3594289 1.2751712  2112
[7368] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {odor=n}                     0.2599705  0.6567164 0.3958641 1.5122347  2112
[7369] {odor=n,                                                                                                   
        stalk.shape=t}              => {gill.size=b}                0.3072378  1.0000000 0.3072378 1.4476123  2496
[7370] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.shape=t}              0.3072378  0.7591241 0.4047267 1.3383516  2496
[7371] {gill.size=b,                                                                                              
        stalk.shape=t}              => {odor=n}                     0.3072378  0.8965517 0.3426883 2.0645086  2496
[7372] {odor=n,                                                                                                   
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  0.6923077 0.3072378 0.8256470  1728
[7373] {odor=n,                                                                                                   
        gill.spacing=c}             => {stalk.shape=t}              0.2127031  0.7176080 0.2964057 1.2651578  1728
[7374] {odor=n,                                                                                                   
        stalk.shape=t}              => {ring.number=o}              0.3072378  1.0000000 0.3072378 1.0849359  2496
[7375] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.shape=t}              0.3072378  0.8524590 0.3604136 1.5029030  2496
[7376] {stalk.shape=t,                                                                                            
        ring.number=o}              => {odor=n}                     0.3072378  0.5416667 0.5672083 1.2473073  2496
[7377] {odor=n,                                                                                                   
        stalk.shape=t}              => {gill.attachment=f}          0.3072378  1.0000000 0.3072378 1.0265353  2496
[7378] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.shape=t}              0.3072378  0.7482014 0.4106352 1.3190947  2496
[7379] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {odor=n}                     0.3072378  0.5416667 0.5672083 1.2473073  2496
[7380] {odor=n,                                                                                                   
        stalk.shape=t}              => {veil.color=w}               0.3072378  1.0000000 0.3072378 1.0252398  2496
[7381] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.shape=t}              0.3072378  0.7500000 0.4096504 1.3222656  2496
[7382] {stalk.shape=t,                                                                                            
        veil.color=w}               => {odor=n}                     0.3072378  0.5416667 0.5672083 1.2473073  2496
[7383] {bruises=f,                                                                                                
        odor=n}                     => {stalk.surface.below.ring=s} 0.1033973  0.5614973 0.1841457 0.9241500   840
[7384] {bruises=f,                                                                                                
        odor=n}                     => {stalk.surface.above.ring=s} 0.1093058  0.5935829 0.1841457 0.9316591   888
[7385] {bruises=f,                                                                                                
        odor=n}                     => {gill.size=b}                0.1555884  0.8449198 0.1841457 1.2231162  1264
[7386] {bruises=f,                                                                                                
        odor=n}                     => {ring.number=o}              0.1467258  0.7967914 0.1841457 0.8644676  1192
[7387] {bruises=f,                                                                                                
        odor=n}                     => {gill.attachment=f}          0.1605121  0.8716578 0.1841457 0.8947874  1304
[7388] {bruises=f,                                                                                                
        odor=n}                     => {veil.color=w}               0.1595273  0.8663102 0.1841457 0.8881756  1296
[7389] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.3195470  0.9038997 0.3535204 1.4187174  2596
[7390] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.3195470  0.8890411 0.3594289 1.4632435  2596
[7391] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {odor=n}                     0.3195470  0.6246391 0.5115707 1.4383696  2596
[7392] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {gill.size=b}                0.3377646  0.9554318 0.3535204 1.3830947  2744
[7393] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.surface.below.ring=s} 0.3377646  0.8345499 0.4047267 1.3735582  2744
[7394] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {odor=n}                     0.3377646  0.8070588 0.4185130 1.8584314  2744
[7395] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.2845889  0.8050139 0.3535204 0.9600606  2312
[7396] {odor=n,                                                                                                   
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.2845889  0.9601329 0.2964057 1.5802511  2312
[7397] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {odor=n}                     0.2845889  0.5525813 0.5150172 1.2724405  2312
[7398] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {ring.number=o}              0.2993599  0.8467967 0.3535204 0.9187201  2432
[7399] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.surface.below.ring=s} 0.2993599  0.8306011 0.3604136 1.3670590  2432
[7400] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {odor=n}                     0.2993599  0.5409253 0.5534220 1.2456000  2432
[7401] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.3298868  0.9331476 0.3535204 0.9579089  2680
[7402] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.3298868  0.8033573 0.4106352 1.3222194  2680
[7403] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {odor=n}                     0.3298868  0.5649241 0.5839488 1.3008627  2680
[7404] {odor=n,                                                                                                   
        stalk.surface.below.ring=s} => {veil.color=w}               0.3298868  0.9331476 0.3535204 0.9567001  2680
[7405] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3298868  0.8052885 0.4096504 1.3253978  2680
[7406] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {odor=n}                     0.3298868  0.5649241 0.5839488 1.3008627  2680
[7407] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {gill.size=b}                0.3377646  0.9397260 0.3594289 1.3603589  2744
[7408] {odor=n,                                                                                                   
        gill.size=b}                => {stalk.surface.above.ring=s} 0.3377646  0.8345499 0.4047267 1.3098692  2744
[7409] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {odor=n}                     0.3377646  0.7639198 0.4421467 1.7590943  2744
[7410] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2904973  0.8082192 0.3594289 0.9638832  2360
[7411] {odor=n,                                                                                                   
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.2904973  0.9800664 0.2964057 1.5382650  2360
[7412] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {odor=n}                     0.2904973  0.5334539 0.5445593 1.2283955  2360
[7413] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {ring.number=o}              0.3052683  0.8493151 0.3594289 0.9214524  2480
[7414] {odor=n,                                                                                                   
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3052683  0.8469945 0.3604136 1.3294018  2480
[7415] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {odor=n}                     0.3052683  0.5236486 0.5829641 1.2058168  2480
[7416] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.3357952  0.9342466 0.3594289 0.9590370  2728
[7417] {odor=n,                                                                                                   
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.3357952  0.8177458 0.4106352 1.2834944  2728
[7418] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {odor=n}                     0.3357952  0.5473515 0.6134909 1.2603979  2728
[7419] {odor=n,                                                                                                   
        stalk.surface.above.ring=s} => {veil.color=w}               0.3357952  0.9342466 0.3594289 0.9578268  2728
[7420] {odor=n,                                                                                                   
        veil.color=w}               => {stalk.surface.above.ring=s} 0.3357952  0.8197115 0.4096504 1.2865797  2728
[7421] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {odor=n}                     0.3357952  0.5473515 0.6134909 1.2603979  2728
[7422] {odor=n,                                                                                                   
        gill.size=b}                => {gill.spacing=c}             0.2747415  0.6788321 0.4047267 0.8095761  2232
[7423] {odor=n,                                                                                                   
        gill.spacing=c}             => {gill.size=b}                0.2747415  0.9269103 0.2964057 1.3418067  2232
[7424] {odor=n,                                                                                                   
        gill.size=b}                => {ring.number=o}              0.3308715  0.8175182 0.4047267 0.8869549  2688
[7425] {odor=n,                                                                                                   
        ring.number=o}              => {gill.size=b}                0.3308715  0.9180328 0.3604136 1.3289555  2688
[7426] {gill.size=b,                                                                                              
        ring.number=o}              => {odor=n}                     0.3308715  0.5401929 0.6125062 1.2439136  2688
[7427] {odor=n,                                                                                                   
        gill.size=b}                => {gill.attachment=f}          0.3810931  0.9416058 0.4047267 0.9665916  3096
[7428] {odor=n,                                                                                                   
        gill.attachment=f}          => {gill.size=b}                0.3810931  0.9280576 0.4106352 1.3434675  3096
[7429] {gill.attachment=f,                                                                                        
        gill.size=b}                => {odor=n}                     0.3810931  0.5731211 0.6649434 1.3197380  3096
[7430] {odor=n,                                                                                                   
        gill.size=b}                => {veil.color=w}               0.3810931  0.9416058 0.4047267 0.9653718  3096
[7431] {odor=n,                                                                                                   
        veil.color=w}               => {gill.size=b}                0.3810931  0.9302885 0.4096504 1.3466970  3096
[7432] {gill.size=b,                                                                                              
        veil.color=w}               => {odor=n}                     0.3810931  0.5712177 0.6671590 1.3153551  3096
[7433] {odor=n,                                                                                                   
        gill.spacing=c}             => {ring.number=o}              0.2580010  0.8704319 0.2964057 0.9443628  2096
[7434] {odor=n,                                                                                                   
        ring.number=o}              => {gill.spacing=c}             0.2580010  0.7158470 0.3604136 0.8537201  2096
[7435] {odor=n,                                                                                                   
        gill.spacing=c}             => {gill.attachment=f}          0.2727720  0.9202658 0.2964057 0.9446853  2216
[7436] {odor=n,                                                                                                   
        gill.attachment=f}          => {gill.spacing=c}             0.2727720  0.6642686 0.4106352 0.7922076  2216
[7437] {odor=n,                                                                                                   
        gill.spacing=c}             => {veil.color=w}               0.2727720  0.9202658 0.2964057 0.9434931  2216
[7438] {odor=n,                                                                                                   
        veil.color=w}               => {gill.spacing=c}             0.2727720  0.6658654 0.4096504 0.7941119  2216
[7439] {odor=n,                                                                                                   
        ring.number=o}              => {gill.attachment=f}          0.3367799  0.9344262 0.3604136 0.9592215  2736
[7440] {odor=n,                                                                                                   
        gill.attachment=f}          => {ring.number=o}              0.3367799  0.8201439 0.4106352 0.8898035  2736
[7441] {odor=n,                                                                                                   
        ring.number=o}              => {veil.color=w}               0.3357952  0.9316940 0.3604136 0.9552097  2728
[7442] {odor=n,                                                                                                   
        veil.color=w}               => {ring.number=o}              0.3357952  0.8197115 0.4096504 0.8893345  2728
[7443] {odor=n,                                                                                                   
        gill.attachment=f}          => {veil.color=w}               0.4096504  0.9976019 0.4106352 1.0227812  3328
[7444] {odor=n,                                                                                                   
        veil.color=w}               => {gill.attachment=f}          0.4096504  1.0000000 0.4096504 1.0265353  3328
[7445] {cap.shape=x,                                                                                              
        stalk.root=b}               => {class=p}                    0.1211226  0.5093168 0.2378139 1.0566112   984
[7446] {class=p,                                                                                                  
        cap.shape=x}                => {stalk.root=b}               0.1211226  0.5761124 0.2102413 1.2394961   984
[7447] {class=p,                                                                                                  
        stalk.root=b}               => {cap.shape=x}                0.1211226  0.5301724 0.2284589 1.1780965   984
[7448] {cap.shape=x,                                                                                              
        stalk.root=b}               => {ring.type=p}                0.1560807  0.6563147 0.2378139 1.3437250  1268
[7449] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.root=b}               0.1560807  0.6590437 0.2368291 1.4179213  1268
[7450] {stalk.root=b,                                                                                             
        ring.type=p}                => {cap.shape=x}                0.1560807  0.5213816 0.2993599 1.1585623  1268
[7451] {cap.shape=x,                                                                                              
        stalk.root=b}               => {population=v}               0.1225997  0.5155280 0.2378139 1.0366706   996
[7452] {cap.shape=x,                                                                                              
        population=v}               => {stalk.root=b}               0.1225997  0.5872642 0.2087642 1.2634889   996
[7453] {stalk.root=b,                                                                                             
        population=v}               => {cap.shape=x}                0.1225997  0.5020161 0.2442147 1.1155304   996
[7454] {cap.shape=x,                                                                                              
        stalk.root=b}               => {stalk.shape=t}              0.1299852  0.5465839 0.2378139 0.9636387  1056
[7455] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {stalk.root=b}               0.1299852  0.5238095 0.2481536 1.1269673  1056
[7456] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {cap.shape=x}                0.1299852  0.5000000 0.2599705 1.1110503  1056
[7457] {bruises=f,                                                                                                
        stalk.root=b}               => {cap.shape=x}                0.1058592  0.5541237 0.1910389 1.2313187   860
[7458] {cap.shape=x,                                                                                              
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.1477105  0.6211180 0.2378139 1.0222777  1200
[7459] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {stalk.root=b}               0.1477105  0.5319149 0.2776957 1.1444059  1200
[7460] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {cap.shape=x}                0.1477105  0.5226481 0.2826194 1.1613766  1200
[7461] {cap.shape=x,                                                                                              
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.1477105  0.6211180 0.2378139 0.9748769  1200
[7462] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {stalk.root=b}               0.1477105  0.5050505 0.2924668 1.0866076  1200
[7463] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {cap.shape=x}                0.1477105  0.5226481 0.2826194 1.1613766  1200
[7464] {cap.shape=x,                                                                                              
        stalk.root=b}               => {gill.size=b}                0.2063023  0.8674948 0.2378139 1.2557961  1676
[7465] {cap.shape=x,                                                                                              
        gill.size=b}                => {stalk.root=b}               0.2063023  0.6367781 0.3239783 1.3700173  1676
[7466] {cap.shape=x,                                                                                              
        stalk.root=b}               => {gill.spacing=c}             0.2181192  0.9171843 0.2378139 1.0938351  1772
[7467] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {stalk.root=b}               0.2181192  0.5875332 0.3712457 1.2640676  1772
[7468] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {cap.shape=x}                0.2181192  0.5022676 0.4342688 1.1160891  1772
[7469] {cap.shape=x,                                                                                              
        stalk.root=b}               => {ring.number=o}              0.2353520  0.9896480 0.2378139 1.0737047  1912
[7470] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.root=b}               0.2353520  0.5519630 0.4263909 1.1875391  1912
[7471] {stalk.root=b,                                                                                             
        ring.number=o}              => {cap.shape=x}                0.2353520  0.5229759 0.4500246 1.1621052  1912
[7472] {cap.shape=x,                                                                                              
        stalk.root=b}               => {gill.attachment=f}          0.2378139  1.0000000 0.2378139 1.0265353  1932
[7473] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.root=b}               0.2378139  0.5363687 0.4433776 1.1539881  1932
[7474] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {cap.shape=x}                0.2378139  0.5116525 0.4647957 1.1369435  1932
[7475] {cap.shape=x,                                                                                              
        stalk.root=b}               => {veil.color=w}               0.2378139  1.0000000 0.2378139 1.0252398  1932
[7476] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.root=b}               0.2378139  0.5354767 0.4441162 1.1520691  1932
[7477] {stalk.root=b,                                                                                             
        veil.color=w}               => {cap.shape=x}                0.2378139  0.5116525 0.4647957 1.1369435  1932
[7478] {class=p,                                                                                                  
        cap.shape=x}                => {population=v}               0.1403250  0.6674473 0.2102413 1.3421638  1140
[7479] {cap.shape=x,                                                                                              
        population=v}               => {class=p}                    0.1403250  0.6721698 0.2087642 1.3944606  1140
[7480] {class=p,                                                                                                  
        cap.shape=x}                => {bruises=f}                  0.1767602  0.8407494 0.2102413 1.4385527  1436
[7481] {cap.shape=x,                                                                                              
        bruises=f}                  => {class=p}                    0.1767602  0.7039216 0.2511078 1.4603317  1436
[7482] {class=p,                                                                                                  
        cap.shape=x}                => {gill.spacing=c}             0.1984244  0.9437939 0.2102413 1.1255698  1612
[7483] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {class=p}                    0.1984244  0.5344828 0.3712457 1.1088197  1612
[7484] {class=p,                                                                                                  
        cap.shape=x}                => {ring.number=o}              0.2087642  0.9929742 0.2102413 1.0773134  1696
[7485] {class=p,                                                                                                  
        cap.shape=x}                => {gill.attachment=f}          0.2095027  0.9964871 0.2102413 1.0229292  1702
[7486] {class=p,                                                                                                  
        cap.shape=x}                => {veil.color=w}               0.2102413  1.0000000 0.2102413 1.0252398  1708
[7487] {cap.shape=x,                                                                                              
        ring.type=p}                => {class=e}                    0.1797144  0.7588358 0.2368291 1.4650147  1460
[7488] {class=e,                                                                                                  
        cap.shape=x}                => {ring.type=p}                0.1797144  0.7494867 0.2397834 1.5344833  1460
[7489] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.color.below.ring=w}   0.1595273  0.6735967 0.2368291 1.2482435  1296
[7490] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {ring.type=p}                0.1595273  0.6403162 0.2491384 1.3109700  1296
[7491] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.color.above.ring=w}   0.1595273  0.6735967 0.2368291 1.2258735  1296
[7492] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {ring.type=p}                0.1595273  0.6328125 0.2520926 1.2956070  1296
[7493] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.shape=t}              0.1299852  0.5488565 0.2368291 0.9676455  1056
[7494] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {ring.type=p}                0.1299852  0.5238095 0.2481536 1.0724366  1056
[7495] {stalk.shape=t,                                                                                            
        ring.type=p}                => {cap.shape=x}                0.1299852  0.5000000 0.2599705 1.1110503  1056
[7496] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2097489  0.8856549 0.2368291 1.4576702  1704
[7497] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=p}                0.2097489  0.7553191 0.2776957 1.5464246  1704
[7498] {cap.shape=x,                                                                                              
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2215657  0.9355509 0.2368291 1.4683956  1800
[7499] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=p}                0.2215657  0.7575758 0.2924668 1.5510447  1800
[7500] {cap.shape=x,                                                                                              
        ring.type=p}                => {gill.size=b}                0.1875923  0.7920998 0.2368291 1.1466534  1524
[7501] {cap.shape=x,                                                                                              
        gill.size=b}                => {ring.type=p}                0.1875923  0.5790274 0.3239783 1.1854885  1524
[7502] {cap.shape=x,                                                                                              
        ring.type=p}                => {gill.spacing=c}             0.2072871  0.8752599 0.2368291 1.0438361  1684
[7503] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {ring.type=p}                0.2072871  0.5583554 0.3712457 1.1431652  1684
[7504] {cap.shape=x,                                                                                              
        ring.type=p}                => {ring.number=o}              0.2225505  0.9397089 0.2368291 1.0195240  1808
[7505] {cap.shape=x,                                                                                              
        ring.number=o}              => {ring.type=p}                0.2225505  0.5219400 0.4263909 1.0686089  1808
[7506] {ring.number=o,                                                                                            
        ring.type=p}                => {cap.shape=x}                0.2225505  0.5078652 0.4382078 1.1285275  1808
[7507] {cap.shape=x,                                                                                              
        ring.type=p}                => {gill.attachment=f}          0.2309207  0.9750520 0.2368291 1.0009252  1876
[7508] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {ring.type=p}                0.2309207  0.5208218 0.4433776 1.0663196  1876
[7509] {cap.shape=x,                                                                                              
        ring.type=p}                => {veil.color=w}               0.2309207  0.9750520 0.2368291 0.9996621  1876
[7510] {cap.shape=x,                                                                                              
        veil.color=w}               => {ring.type=p}                0.2309207  0.5199557 0.4441162 1.0645463  1876
[7511] {cap.shape=x,                                                                                              
        population=v}               => {stalk.shape=t}              0.1388479  0.6650943 0.2087642 1.1725752  1128
[7512] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {population=v}               0.1388479  0.5595238 0.2481536 1.1251414  1128
[7513] {cap.shape=x,                                                                                              
        population=v}               => {bruises=f}                  0.1319547  0.6320755 0.2087642 1.0815040  1072
[7514] {cap.shape=x,                                                                                              
        bruises=f}                  => {population=v}               0.1319547  0.5254902 0.2511078 1.0567036  1072
[7515] {cap.shape=x,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1255539  0.6014151 0.2087642 0.9898493  1020
[7516] {cap.shape=x,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1270310  0.6084906 0.2087642 0.9550574  1032
[7517] {cap.shape=x,                                                                                              
        population=v}               => {gill.size=b}                0.1058592  0.5070755 0.2087642 0.7340487   860
[7518] {cap.shape=x,                                                                                              
        population=v}               => {gill.spacing=c}             0.1949778  0.9339623 0.2087642 1.1138446  1584
[7519] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {population=v}               0.1949778  0.5251989 0.3712457 1.0561179  1584
[7520] {cap.shape=x,                                                                                              
        population=v}               => {ring.number=o}              0.2077794  0.9952830 0.2087642 1.0798183  1688
[7521] {cap.shape=x,                                                                                              
        population=v}               => {gill.attachment=f}          0.2058099  0.9858491 0.2087642 1.0120088  1672
[7522] {cap.shape=x,                                                                                              
        population=v}               => {veil.color=w}               0.2058099  0.9858491 0.2087642 1.0107317  1672
[7523] {class=e,                                                                                                  
        cap.shape=x}                => {stalk.color.below.ring=w}   0.1565731  0.6529774 0.2397834 1.2100339  1272
[7524] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {class=e}                    0.1565731  0.6284585 0.2491384 1.2133072  1272
[7525] {class=e,                                                                                                  
        cap.shape=x}                => {stalk.color.above.ring=w}   0.1585426  0.6611910 0.2397834 1.2032965  1288
[7526] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {class=e}                    0.1585426  0.6289062 0.2520926 1.2141717  1288
[7527] {class=e,                                                                                                  
        cap.shape=x}                => {stalk.shape=t}              0.1595273  0.6652977 0.2397834 1.1729338  1296
[7528] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {class=e}                    0.1595273  0.6428571 0.2481536 1.2411054  1296
[7529] {class=e,                                                                                                  
        stalk.shape=t}              => {cap.shape=x}                0.1595273  0.5000000 0.3190547 1.1110503  1296
[7530] {class=e,                                                                                                  
        cap.shape=x}                => {stalk.surface.below.ring=s} 0.1939931  0.8090349 0.2397834 1.3315639  1576
[7531] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {class=e}                    0.1939931  0.6985816 0.2776957 1.3486874  1576
[7532] {class=e,                                                                                                  
        cap.shape=x}                => {stalk.surface.above.ring=s} 0.2087642  0.8706366 0.2397834 1.3665091  1696
[7533] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {class=e}                    0.2087642  0.7138047 0.2924668 1.3780774  1696
[7534] {class=e,                                                                                                  
        cap.shape=x}                => {gill.size=b}                0.2250123  0.9383984 0.2397834 1.3584370  1828
[7535] {cap.shape=x,                                                                                              
        gill.size=b}                => {class=e}                    0.2250123  0.6945289 0.3239783 1.3408633  1828
[7536] {class=e,                                                                                                  
        cap.shape=x}                => {gill.spacing=c}             0.1728213  0.7207392 0.2397834 0.8595545  1404
[7537] {class=e,                                                                                                  
        cap.shape=x}                => {ring.number=o}              0.2176268  0.9075975 0.2397834 0.9846851  1768
[7538] {cap.shape=x,                                                                                              
        ring.number=o}              => {class=e}                    0.2176268  0.5103926 0.4263909 0.9853682  1768
[7539] {class=e,                                                                                                  
        cap.shape=x}                => {gill.attachment=f}          0.2338749  0.9753593 0.2397834 1.0012408  1900
[7540] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {class=e}                    0.2338749  0.5274847 0.4433776 1.0183664  1900
[7541] {class=e,                                                                                                  
        cap.shape=x}                => {veil.color=w}               0.2338749  0.9753593 0.2397834 0.9999772  1900
[7542] {cap.shape=x,                                                                                              
        veil.color=w}               => {class=e}                    0.2338749  0.5266075 0.4441162 1.0166729  1900
[7543] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2058099  0.8260870 0.2491384 1.5033894  1672
[7544] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2058099  0.8164062 0.2520926 1.5128842  1672
[7545] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1418021  0.5691700 0.2491384 1.0034585  1152
[7546] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1418021  0.5714286 0.2481536 1.0589155  1152
[7547] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {bruises=f}                  0.1250615  0.5019763 0.2491384 0.8588996  1016
[7548] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1782373  0.7154150 0.2491384 1.1774780  1448
[7549] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1782373  0.6418440 0.2776957 1.1894025  1448
[7550] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1930084  0.7747036 0.2491384 1.2159373  1568
[7551] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1930084  0.6599327 0.2924668 1.2229227  1568
[7552] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {gill.size=b}                0.1614968  0.6482213 0.2491384 0.9383732  1312
[7553] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1723289  0.6916996 0.2491384 0.8249218  1400
[7554] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.2314131  0.9288538 0.2491384 1.0077468  1880
[7555] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.color.below.ring=w}   0.2314131  0.5427252 0.4263909 1.0057252  1880
[7556] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2491384  1.0000000 0.2491384 1.0265353  2024
[7557] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.2491384  0.5619100 0.4433776 1.0412767  2024
[7558] {cap.shape=x,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.2491384  1.0000000 0.2491384 1.0252398  2024
[7559] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.color.below.ring=w}   0.2491384  0.5609756 0.4441162 1.0395451  2024
[7560] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1418021  0.5625000 0.2520926 0.9916992  1152
[7561] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1418021  0.5714286 0.2481536 1.0399386  1152
[7562] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {bruises=f}                  0.1280158  0.5078125 0.2520926 0.8688856  1040
[7563] {cap.shape=x,                                                                                              
        bruises=f}                  => {stalk.color.above.ring=w}   0.1280158  0.5098039 0.2511078 0.9277883  1040
[7564] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1792221  0.7109375 0.2520926 1.1701086  1456
[7565] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1792221  0.6453901 0.2776957 1.1745405  1456
[7566] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1939931  0.7695312 0.2520926 1.2078191  1576
[7567] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1939931  0.6632997 0.2924668 1.2071341  1576
[7568] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {gill.size=b}                0.1614968  0.6406250 0.2520926 0.9273766  1312
[7569] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1733136  0.6875000 0.2520926 0.8199134  1408
[7570] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.2343673  0.9296875 0.2520926 1.0086513  1904
[7571] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.color.above.ring=w}   0.2343673  0.5496536 0.4263909 1.0003104  1904
[7572] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2520926  1.0000000 0.2520926 1.0265353  2048
[7573] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.2520926  0.5685730 0.4433776 1.0347418  2048
[7574] {cap.shape=x,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.2520926  1.0000000 0.2520926 1.0252398  2048
[7575] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.color.above.ring=w}   0.2520926  0.5676275 0.4441162 1.0330210  2048
[7576] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1802068  0.7261905 0.2481536 1.1952130  1464
[7577] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1802068  0.6489362 0.2776957 1.1440880  1464
[7578] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1802068  0.7261905 0.2481536 1.1397936  1464
[7579] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1802068  0.6161616 0.2924668 1.0863058  1464
[7580] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {gill.size=b}                0.1713442  0.6904762 0.2481536 0.9995418  1392
[7581] {cap.shape=x,                                                                                              
        gill.size=b}                => {stalk.shape=t}              0.1713442  0.5288754 0.3239783 0.9324183  1392
[7582] {gill.size=b,                                                                                              
        stalk.shape=t}              => {cap.shape=x}                0.1713442  0.5000000 0.3426883 1.1110503  1392
[7583] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.1949778  0.7857143 0.2481536 0.9370439  1584
[7584] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {stalk.shape=t}              0.1949778  0.5251989 0.3712457 0.9259367  1584
[7585] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.2481536  1.0000000 0.2481536 1.0849359  2016
[7586] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.2481536  0.5819861 0.4263909 1.0260537  2016
[7587] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.2481536  1.0000000 0.2481536 1.0265353  2016
[7588] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.shape=t}              0.2481536  0.5596891 0.4433776 0.9867435  2016
[7589] {cap.shape=x,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.2481536  1.0000000 0.2481536 1.0252398  2016
[7590] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.2481536  0.5587583 0.4441162 0.9851025  2016
[7591] {cap.shape=x,                                                                                              
        bruises=f}                  => {gill.size=b}                0.1467258  0.5843137 0.2511078 0.8458597  1192
[7592] {cap.shape=x,                                                                                              
        bruises=f}                  => {gill.spacing=c}             0.1782373  0.7098039 0.2511078 0.8465131  1448
[7593] {cap.shape=x,                                                                                              
        bruises=f}                  => {ring.number=o}              0.2373215  0.9450980 0.2511078 1.0253708  1928
[7594] {cap.shape=x,                                                                                              
        ring.number=o}              => {bruises=f}                  0.2373215  0.5565820 0.4263909 0.9523319  1928
[7595] {cap.shape=x,                                                                                              
        bruises=f}                  => {gill.attachment=f}          0.2444609  0.9735294 0.2511078 0.9993623  1986
[7596] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {bruises=f}                  0.2444609  0.5513604 0.4433776 0.9433975  1986
[7597] {cap.shape=x,                                                                                              
        bruises=f}                  => {veil.color=w}               0.2451994  0.9764706 0.2511078 1.0011165  1992
[7598] {cap.shape=x,                                                                                              
        veil.color=w}               => {bruises=f}                  0.2451994  0.5521064 0.4441162 0.9446741  1992
[7599] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.2402757  0.8652482 0.2776957 1.3580519  1952
[7600] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.2402757  0.8215488 0.2924668 1.3521602  1952
[7601] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {gill.size=b}                0.1920236  0.6914894 0.2776957 1.0010085  1560
[7602] {cap.shape=x,                                                                                              
        gill.size=b}                => {stalk.surface.below.ring=s} 0.1920236  0.5927052 0.3239783 0.9755139  1560
[7603] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.2294436  0.8262411 0.2776957 0.9853762  1864
[7604] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.2294436  0.6180371 0.3712457 1.0172070  1864
[7605] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.2619399  0.9432624 0.2776957 1.0233793  2128
[7606] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.2619399  0.6143187 0.4263909 1.0110869  2128
[7607] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.2717873  0.9787234 0.2776957 1.0046941  2208
[7608] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.2717873  0.6129928 0.4433776 1.0089047  2208
[7609] {cap.shape=x,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.2717873  0.9787234 0.2776957 1.0034262  2208
[7610] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.2717873  0.6119734 0.4441162 1.0072269  2208
[7611] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {gill.size=b}                0.2038405  0.6969697 0.2924668 1.0089419  1656
[7612] {cap.shape=x,                                                                                              
        gill.size=b}                => {stalk.surface.above.ring=s} 0.2038405  0.6291793 0.3239783 0.9875295  1656
[7613] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2442147  0.8350168 0.2924668 0.9958422  1984
[7614] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.2442147  0.6578249 0.3712457 1.0324903  1984
[7615] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.2767110  0.9461279 0.2924668 1.0264882  2248
[7616] {cap.shape=x,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.2767110  0.6489607 0.4263909 1.0185775  2248
[7617] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2865583  0.9797980 0.2924668 1.0057972  2328
[7618] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.2865583  0.6463076 0.4433776 1.0144133  2328
[7619] {cap.shape=x,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.2865583  0.9797980 0.2924668 1.0045279  2328
[7620] {cap.shape=x,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.2865583  0.6452328 0.4441162 1.0127263  2328
[7621] {cap.shape=x,                                                                                              
        gill.size=b}                => {gill.spacing=c}             0.2648941  0.8176292 0.3239783 0.9751056  2152
[7622] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {gill.size=b}                0.2648941  0.7135279 0.3712457 1.0329117  2152
[7623] {cap.shape=x,                                                                                              
        gill.size=b}                => {ring.number=o}              0.3003447  0.9270517 0.3239783 1.0057916  2440
[7624] {cap.shape=x,                                                                                              
        ring.number=o}              => {gill.size=b}                0.3003447  0.7043880 0.4263909 1.0196807  2440
[7625] {cap.shape=x,                                                                                              
        gill.size=b}                => {gill.attachment=f}          0.3173314  0.9794833 0.3239783 1.0054741  2578
[7626] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {gill.size=b}                0.3173314  0.7157135 0.4433776 1.0360756  2578
[7627] {cap.shape=x,                                                                                              
        gill.size=b}                => {veil.color=w}               0.3180699  0.9817629 0.3239783 1.0065424  2584
[7628] {cap.shape=x,                                                                                              
        veil.color=w}               => {gill.size=b}                0.3180699  0.7161863 0.4441162 1.0367600  2584
[7629] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {ring.number=o}              0.3594289  0.9681698 0.3712457 1.0504021  2920
[7630] {cap.shape=x,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.3594289  0.8429561 0.4263909 1.0053106  2920
[7631] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {gill.attachment=f}          0.3645987  0.9820955 0.3712457 1.0081556  2962
[7632] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {gill.spacing=c}             0.3645987  0.8223209 0.4433776 0.9807010  2962
[7633] {cap.shape=x,                                                                                              
        gill.spacing=c}             => {veil.color=w}               0.3653373  0.9840849 0.3712457 1.0089230  2968
[7634] {cap.shape=x,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.3653373  0.8226164 0.4441162 0.9810534  2968
[7635] {cap.shape=x,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.4204825  0.9861432 0.4263909 1.0123107  3416
[7636] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {ring.number=o}              0.4204825  0.9483620 0.4433776 1.0289120  3416
[7637] {cap.shape=x,                                                                                              
        ring.number=o}              => {veil.color=w}               0.4204825  0.9861432 0.4263909 1.0110332  3416
[7638] {cap.shape=x,                                                                                              
        veil.color=w}               => {ring.number=o}              0.4204825  0.9467849 0.4441162 1.0272009  3416
[7639] {cap.shape=x,                                                                                              
        gill.attachment=f}          => {veil.color=w}               0.4433776  1.0000000 0.4433776 1.0252398  3602
[7640] {cap.shape=x,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.4433776  0.9983370 0.4441162 1.0248282  3602
[7641] {class=p,                                                                                                  
        stalk.root=b}               => {population=v}               0.1181684  0.5172414 0.2284589 1.0401161   960
[7642] {class=p,                                                                                                  
        stalk.root=b}               => {bruises=f}                  0.1831610  0.8017241 0.2284589 1.3717790  1488
[7643] {bruises=f,                                                                                                
        stalk.root=b}               => {class=p}                    0.1831610  0.9587629 0.1910389 1.9890168  1488
[7644] {class=p,                                                                                                  
        stalk.root=b}               => {gill.size=b}                0.2038405  0.8922414 0.2284589 1.2916196  1656
[7645] {class=p,                                                                                                  
        gill.size=b}                => {stalk.root=b}               0.2038405  0.9787234 0.2082718 2.1057068  1656
[7646] {class=p,                                                                                                  
        stalk.root=b}               => {gill.spacing=c}             0.2156573  0.9439655 0.2284589 1.1257745  1752
[7647] {class=p,                                                                                                  
        stalk.root=b}               => {ring.number=o}              0.2195963  0.9612069 0.2284589 1.0428479  1784
[7648] {class=p,                                                                                                  
        stalk.root=b}               => {gill.attachment=f}          0.2284589  1.0000000 0.2284589 1.0265353  1856
[7649] {class=p,                                                                                                  
        stalk.root=b}               => {veil.color=w}               0.2284589  1.0000000 0.2284589 1.0252398  1856
[7650] {stalk.root=b,                                                                                             
        ring.type=p}                => {population=v}               0.1585426  0.5296053 0.2993599 1.0649785  1288
[7651] {stalk.root=b,                                                                                             
        population=v}               => {ring.type=p}                0.1585426  0.6491935 0.2442147 1.3291453  1288
[7652] {ring.type=p,                                                                                              
        population=v}               => {stalk.root=b}               0.1585426  0.8256410 0.1920236 1.7763527  1288
[7653] {stalk.root=b,                                                                                             
        ring.type=p}                => {class=e}                    0.2304284  0.7697368 0.2993599 1.4860604  1872
[7654] {class=e,                                                                                                  
        stalk.root=b}               => {ring.type=p}                0.2304284  0.9750000 0.2363368 1.9961946  1872
[7655] {class=e,                                                                                                  
        ring.type=p}                => {stalk.root=b}               0.2304284  0.5939086 0.3879862 1.2777843  1872
[7656] {stalk.root=b,                                                                                             
        ring.type=p}                => {stalk.color.below.ring=w}   0.1555884  0.5197368 0.2993599 0.9631255  1264
[7657] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {ring.type=p}                0.1555884  1.0000000 0.1555884 2.0473790  1264
[7658] {stalk.root=b,                                                                                             
        ring.type=p}                => {stalk.color.above.ring=w}   0.1555884  0.5197368 0.2993599 0.9458652  1264
[7659] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {ring.type=p}                0.1555884  0.9634146 0.1614968 1.9724749  1264
[7660] {stalk.root=b,                                                                                             
        ring.type=p}                => {stalk.shape=t}              0.2599705  0.8684211 0.2993599 1.5310444  2112
[7661] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {ring.type=p}                0.2599705  1.0000000 0.2599705 2.0473790  2112
[7662] {stalk.shape=t,                                                                                            
        ring.type=p}                => {stalk.root=b}               0.2599705  1.0000000 0.2599705 2.1514831  2112
[7663] {stalk.root=b,                                                                                             
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2796652  0.9342105 0.2993599 1.5375864  2272
[7664] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {ring.type=p}                0.2796652  0.9895470 0.2826194 2.0259779  2272
[7665] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {stalk.root=b}               0.2796652  0.6543779 0.4273757 1.4078829  2272
[7666] {stalk.root=b,                                                                                             
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2796652  0.9342105 0.2993599 1.4662918  2272
[7667] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {ring.type=p}                0.2796652  0.9895470 0.2826194 2.0259779  2272
[7668] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {stalk.root=b}               0.2796652  0.6200873 0.4510094 1.3341074  2272
[7669] {stalk.root=b,                                                                                             
        ring.type=p}                => {gill.size=b}                0.2629247  0.8782895 0.2993599 1.2714226  2136
[7670] {gill.size=b,                                                                                              
        stalk.root=b}               => {ring.type=p}                0.2629247  0.6223776 0.4224520 1.2742429  2136
[7671] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.root=b}               0.2629247  0.6433735 0.4086657 1.3842072  2136
[7672] {stalk.root=b,                                                                                             
        ring.type=p}                => {gill.spacing=c}             0.2747415  0.9177632 0.2993599 1.0945255  2232
[7673] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {ring.type=p}                0.2747415  0.6326531 0.4342688 1.2952806  2232
[7674] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.root=b}               0.2747415  0.6413793 0.4283604 1.3799167  2232
[7675] {stalk.root=b,                                                                                             
        ring.type=p}                => {ring.number=o}              0.2845889  0.9506579 0.2993599 1.0314029  2312
[7676] {stalk.root=b,                                                                                             
        ring.number=o}              => {ring.type=p}                0.2845889  0.6323851 0.4500246 1.2947320  2312
[7677] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.root=b}               0.2845889  0.6494382 0.4382078 1.3972553  2312
[7678] {stalk.root=b,                                                                                             
        ring.type=p}                => {gill.attachment=f}          0.2993599  1.0000000 0.2993599 1.0265353  2432
[7679] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {ring.type=p}                0.2993599  0.6440678 0.4647957 1.3186509  2432
[7680] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.root=b}               0.2993599  0.6440678 0.4647957 1.3857009  2432
[7681] {stalk.root=b,                                                                                             
        ring.type=p}                => {veil.color=w}               0.2993599  1.0000000 0.2993599 1.0252398  2432
[7682] {stalk.root=b,                                                                                             
        veil.color=w}               => {ring.type=p}                0.2993599  0.6440678 0.4647957 1.3186509  2432
[7683] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.root=b}               0.2993599  0.6440678 0.4647957 1.3857009  2432
[7684] {stalk.root=b,                                                                                             
        population=v}               => {class=e}                    0.1260463  0.5161290 0.2442147 0.9964430  1024
[7685] {class=e,                                                                                                  
        stalk.root=b}               => {population=v}               0.1260463  0.5333333 0.2363368 1.0724752  1024
[7686] {class=e,                                                                                                  
        population=v}               => {stalk.root=b}               0.1260463  0.8590604 0.1467258 1.8482539  1024
[7687] {stalk.root=b,                                                                                             
        population=v}               => {stalk.shape=t}              0.1358936  0.5564516 0.2442147 0.9810358  1104
[7688] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {population=v}               0.1358936  0.5227273 0.2599705 1.0511476  1104
[7689] {stalk.root=b,                                                                                             
        population=v}               => {stalk.surface.below.ring=s} 0.1526342  0.6250000 0.2442147 1.0286669  1240
[7690] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {population=v}               0.1526342  0.5400697 0.2826194 1.0860213  1240
[7691] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {stalk.root=b}               0.1526342  0.5218855 0.2924668 1.1228279  1240
[7692] {stalk.root=b,                                                                                             
        population=v}               => {stalk.surface.above.ring=s} 0.1526342  0.6250000 0.2442147 0.9809699  1240
[7693] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {population=v}               0.1526342  0.5400697 0.2826194 1.0860213  1240
[7694] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {stalk.root=b}               0.1526342  0.5166667 0.2954210 1.1115996  1240
[7695] {stalk.root=b,                                                                                             
        population=v}               => {gill.size=b}                0.2146726  0.8790323 0.2442147 1.2724979  1744
[7696] {gill.size=b,                                                                                              
        stalk.root=b}               => {population=v}               0.2146726  0.5081585 0.4224520 1.0218514  1744
[7697] {gill.size=b,                                                                                              
        population=v}               => {stalk.root=b}               0.2146726  0.9478261 0.2264894 2.0392318  1744
[7698] {stalk.root=b,                                                                                             
        population=v}               => {gill.spacing=c}             0.2205810  0.9032258 0.2442147 1.0771883  1792
[7699] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {population=v}               0.2205810  0.5079365 0.4342688 1.0214050  1792
[7700] {stalk.root=b,                                                                                             
        population=v}               => {ring.number=o}              0.2333826  0.9556452 0.2442147 1.0368137  1896
[7701] {stalk.root=b,                                                                                             
        ring.number=o}              => {population=v}               0.2333826  0.5185996 0.4500246 1.0428472  1896
[7702] {stalk.root=b,                                                                                             
        population=v}               => {gill.attachment=f}          0.2442147  1.0000000 0.2442147 1.0265353  1984
[7703] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {population=v}               0.2442147  0.5254237 0.4647957 1.0565699  1984
[7704] {gill.attachment=f,                                                                                        
        population=v}               => {stalk.root=b}               0.2442147  0.5030426 0.4854751 1.0822876  1984
[7705] {stalk.root=b,                                                                                             
        population=v}               => {veil.color=w}               0.2442147  1.0000000 0.2442147 1.0252398  1984
[7706] {stalk.root=b,                                                                                             
        veil.color=w}               => {population=v}               0.2442147  0.5254237 0.4647957 1.0565699  1984
[7707] {veil.color=w,                                                                                             
        population=v}               => {stalk.root=b}               0.2442147  0.5030426 0.4854751 1.0822876  1984
[7708] {class=e,                                                                                                  
        stalk.root=b}               => {stalk.shape=t}              0.2245199  0.9500000 0.2363368 1.6748698  1824
[7709] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {class=e}                    0.2245199  0.8636364 0.2599705 1.6673436  1824
[7710] {class=e,                                                                                                  
        stalk.shape=t}              => {stalk.root=b}               0.2245199  0.7037037 0.3190547 1.5140066  1824
[7711] {class=e,                                                                                                  
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2314131  0.9791667 0.2363368 1.6115782  1880
[7712] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {class=e}                    0.2314131  0.8188153 0.2826194 1.5808117  1880
[7713] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2314131  0.5529412 0.4185130 1.1896436  1880
[7714] {class=e,                                                                                                  
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2314131  0.9791667 0.2363368 1.5368528  1880
[7715] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {class=e}                    0.2314131  0.8188153 0.2826194 1.5808117  1880
[7716] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.root=b}               0.2314131  0.5164835 0.4480551 1.1112055  1880
[7717] {class=e,                                                                                                  
        stalk.root=b}               => {gill.size=b}                0.2186115  0.9250000 0.2363368 1.3390413  1776
[7718] {gill.size=b,                                                                                              
        stalk.root=b}               => {class=e}                    0.2186115  0.5174825 0.4224520 0.9990561  1776
[7719] {class=e,                                                                                                  
        stalk.root=b}               => {gill.spacing=c}             0.2186115  0.9250000 0.2363368 1.1031562  1776
[7720] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {class=e}                    0.2186115  0.5034014 0.4342688 0.9718709  1776
[7721] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.root=b}               0.2186115  0.5904255 0.3702610 1.2702905  1776
[7722] {class=e,                                                                                                  
        stalk.root=b}               => {ring.number=o}              0.2304284  0.9750000 0.2363368 1.0578125  1872
[7723] {stalk.root=b,                                                                                             
        ring.number=o}              => {class=e}                    0.2304284  0.5120350 0.4500246 0.9885391  1872
[7724] {class=e,                                                                                                  
        ring.number=o}              => {stalk.root=b}               0.2304284  0.5086957 0.4529788 1.0944501  1872
[7725] {class=e,                                                                                                  
        stalk.root=b}               => {gill.attachment=f}          0.2363368  1.0000000 0.2363368 1.0265353  1920
[7726] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {class=e}                    0.2363368  0.5084746 0.4647957 0.9816653  1920
[7727] {class=e,                                                                                                  
        stalk.root=b}               => {veil.color=w}               0.2363368  1.0000000 0.2363368 1.0252398  1920
[7728] {stalk.root=b,                                                                                             
        veil.color=w}               => {class=e}                    0.2363368  0.5084746 0.4647957 0.9816653  1920
[7729] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1083210  0.6962025 0.1555884 1.2670137   880
[7730] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1083210  0.6707317 0.1614968 1.2429344   880
[7731] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1181684  0.7594937 0.1555884 1.3390032   960
[7732] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1378631  0.8860759 0.1555884 1.4583633  1120
[7733] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1378631  0.8860759 0.1555884 1.3907421  1120
[7734] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.size=b}                0.1191531  0.7658228 0.1555884 1.1086145   968
[7735] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1309700  0.8417722 0.1555884 1.0038986  1064
[7736] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {ring.number=o}              0.1427868  0.9177215 0.1555884 0.9956690  1160
[7737] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.1555884  1.0000000 0.1555884 1.0265353  1264
[7738] {stalk.root=b,                                                                                             
        stalk.color.below.ring=w}   => {veil.color=w}               0.1555884  1.0000000 0.1555884 1.0252398  1264
[7739] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1181684  0.7317073 0.1614968 1.2900152   960
[7740] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1408173  0.8719512 0.1614968 1.4351158  1144
[7741] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1408173  0.8719512 0.1614968 1.3685726  1144
[7742] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.size=b}                0.1191531  0.7378049 0.1614968 1.0680554   968
[7743] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1309700  0.8109756 0.1614968 0.9671706  1064
[7744] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {ring.number=o}              0.1486952  0.9207317 0.1614968 0.9989349  1208
[7745] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.1614968  1.0000000 0.1614968 1.0265353  1312
[7746] {stalk.root=b,                                                                                             
        stalk.color.above.ring=w}   => {veil.color=w}               0.1614968  1.0000000 0.1614968 1.0252398  1312
[7747] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2422452  0.9318182 0.2599705 1.5336489  1968
[7748] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.2422452  0.8571429 0.2826194 1.5111607  1968
[7749] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2422452  0.6119403 0.3958641 1.3165792  1968
[7750] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2422452  0.9318182 0.2599705 1.4625369  1968
[7751] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.2422452  0.8571429 0.2826194 1.5111607  1968
[7752] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {stalk.root=b}               0.2422452  0.6119403 0.3958641 1.3165792  1968
[7753] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {gill.size=b}                0.2481536  0.9545455 0.2599705 1.3818117  2016
[7754] {gill.size=b,                                                                                              
        stalk.root=b}               => {stalk.shape=t}              0.2481536  0.5874126 0.4224520 1.0356206  2016
[7755] {gill.size=b,                                                                                              
        stalk.shape=t}              => {stalk.root=b}               0.2481536  0.7241379 0.3426883 1.5579705  2016
[7756] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {gill.spacing=c}             0.2481536  0.9545455 0.2599705 1.1383921  2016
[7757] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {stalk.shape=t}              0.2481536  0.5714286 0.4342688 1.0074405  2016
[7758] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {stalk.root=b}               0.2481536  0.5384615 0.4608567 1.1584909  2016
[7759] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {ring.number=o}              0.2599705  1.0000000 0.2599705 1.0849359  2112
[7760] {stalk.root=b,                                                                                             
        ring.number=o}              => {stalk.shape=t}              0.2599705  0.5776805 0.4500246 1.0184628  2112
[7761] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {gill.attachment=f}          0.2599705  1.0000000 0.2599705 1.0265353  2112
[7762] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {stalk.shape=t}              0.2599705  0.5593220 0.4647957 0.9860964  2112
[7763] {stalk.shape=t,                                                                                            
        stalk.root=b}               => {veil.color=w}               0.2599705  1.0000000 0.2599705 1.0252398  2112
[7764] {stalk.root=b,                                                                                             
        veil.color=w}               => {stalk.shape=t}              0.2599705  0.5593220 0.4647957 0.9860964  2112
[7765] {bruises=f,                                                                                                
        stalk.root=b}               => {gill.size=b}                0.1614968  0.8453608 0.1910389 1.2237547  1312
[7766] {bruises=f,                                                                                                
        gill.size=b}                => {stalk.root=b}               0.1614968  0.5053929 0.3195470 1.0873443  1312
[7767] {bruises=f,                                                                                                
        stalk.root=b}               => {gill.spacing=c}             0.1733136  0.9072165 0.1910389 1.0819476  1408
[7768] {bruises=f,                                                                                                
        stalk.root=b}               => {ring.number=o}              0.1890694  0.9896907 0.1910389 1.0737510  1536
[7769] {bruises=f,                                                                                                
        stalk.root=b}               => {gill.attachment=f}          0.1910389  1.0000000 0.1910389 1.0265353  1552
[7770] {bruises=f,                                                                                                
        stalk.root=b}               => {veil.color=w}               0.1910389  1.0000000 0.1910389 1.0252398  1552
[7771] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.2722797  0.9634146 0.2826194 1.5121292  2212
[7772] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.2722797  0.9634146 0.2826194 1.5856524  2212
[7773] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2722797  0.5322425 0.5115707 1.1451108  2212
[7774] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.size=b}                0.2432299  0.8606272 0.2826194 1.2458545  1976
[7775] {gill.size=b,                                                                                              
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2432299  0.5757576 0.4224520 0.9476205  1976
[7776] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {stalk.root=b}               0.2432299  0.5811765 0.4185130 1.2503913  1976
[7777] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.2550468  0.9024390 0.2826194 1.0762499  2072
[7778] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2550468  0.5873016 0.4342688 0.9666204  2072
[7779] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {ring.number=o}              0.2698178  0.9547038 0.2826194 1.0357925  2192
[7780] {stalk.root=b,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=s} 0.2698178  0.5995624 0.4500246 0.9868000  2192
[7781] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.2826194  1.0000000 0.2826194 1.0265353  2296
[7782] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {stalk.surface.below.ring=s} 0.2826194  0.6080508 0.4647957 1.0007709  2296
[7783] {stalk.root=b,                                                                                             
        stalk.surface.below.ring=s} => {veil.color=w}               0.2826194  1.0000000 0.2826194 1.0252398  2296
[7784] {stalk.root=b,                                                                                             
        veil.color=w}               => {stalk.surface.below.ring=s} 0.2826194  0.6080508 0.4647957 1.0007709  2296
[7785] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.size=b}                0.2432299  0.8606272 0.2826194 1.2458545  1976
[7786] {gill.size=b,                                                                                              
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2432299  0.5757576 0.4224520 0.9036813  1976
[7787] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {stalk.root=b}               0.2432299  0.5501114 0.4421467 1.1835553  1976
[7788] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.2550468  0.9024390 0.2826194 1.0762499  2072
[7789] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2550468  0.5873016 0.4342688 0.9218003  2072
[7790] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {ring.number=o}              0.2698178  0.9547038 0.2826194 1.0357925  2192
[7791] {stalk.root=b,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.2698178  0.5995624 0.4500246 0.9410442  2192
[7792] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2826194  1.0000000 0.2826194 1.0265353  2296
[7793] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {stalk.surface.above.ring=s} 0.2826194  0.6080508 0.4647957 0.9543673  2296
[7794] {stalk.root=b,                                                                                             
        stalk.surface.above.ring=s} => {veil.color=w}               0.2826194  1.0000000 0.2826194 1.0252398  2296
[7795] {stalk.root=b,                                                                                             
        veil.color=w}               => {stalk.surface.above.ring=s} 0.2826194  0.6080508 0.4647957 0.9543673  2296
[7796] {gill.size=b,                                                                                              
        stalk.root=b}               => {gill.spacing=c}             0.4224520  1.0000000 0.4224520 1.1926013  3432
[7797] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {gill.size=b}                0.4224520  0.9727891 0.4342688 1.4082214  3432
[7798] {gill.spacing=c,                                                                                           
        gill.size=b}                => {stalk.root=b}               0.4224520  0.7532924 0.5608075 1.6206957  3432
[7799] {gill.size=b,                                                                                              
        stalk.root=b}               => {ring.number=o}              0.4076809  0.9650350 0.4224520 1.0470011  3312
[7800] {stalk.root=b,                                                                                             
        ring.number=o}              => {gill.size=b}                0.4076809  0.9059081 0.4500246 1.3114037  3312
[7801] {gill.size=b,                                                                                              
        ring.number=o}              => {stalk.root=b}               0.4076809  0.6655949 0.6125062 1.4320160  3312
[7802] {gill.size=b,                                                                                              
        stalk.root=b}               => {gill.attachment=f}          0.4224520  1.0000000 0.4224520 1.0265353  3432
[7803] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {gill.size=b}                0.4224520  0.9088983 0.4647957 1.3157323  3432
[7804] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.root=b}               0.4224520  0.6353203 0.6649434 1.3668808  3432
[7805] {gill.size=b,                                                                                              
        stalk.root=b}               => {veil.color=w}               0.4224520  1.0000000 0.4224520 1.0252398  3432
[7806] {stalk.root=b,                                                                                             
        veil.color=w}               => {gill.size=b}                0.4224520  0.9088983 0.4647957 1.3157323  3432
[7807] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.root=b}               0.4224520  0.6332103 0.6671590 1.3623413  3432
[7808] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {ring.number=o}              0.4194978  0.9659864 0.4342688 1.0480333  3408
[7809] {stalk.root=b,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.4194978  0.9321663 0.4500246 1.1117027  3408
[7810] {gill.spacing=c,                                                                                           
        ring.number=o}              => {stalk.root=b}               0.4194978  0.5272277 0.7956672 1.1343215  3408
[7811] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {gill.attachment=f}          0.4342688  1.0000000 0.4342688 1.0265353  3528
[7812] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {gill.spacing=c}             0.4342688  0.9343220 0.4647957 1.1142737  3528
[7813] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {stalk.root=b}               0.4342688  0.5343835 0.8126539 1.1497171  3528
[7814] {gill.spacing=c,                                                                                           
        stalk.root=b}               => {veil.color=w}               0.4342688  1.0000000 0.4342688 1.0252398  3528
[7815] {stalk.root=b,                                                                                             
        veil.color=w}               => {gill.spacing=c}             0.4342688  0.9343220 0.4647957 1.1142737  3528
[7816] {gill.spacing=c,                                                                                           
        veil.color=w}               => {stalk.root=b}               0.4342688  0.5329305 0.8148695 1.1465910  3528
[7817] {stalk.root=b,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.4500246  1.0000000 0.4500246 1.0265353  3656
[7818] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {ring.number=o}              0.4500246  0.9682203 0.4647957 1.0504570  3656
[7819] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.root=b}               0.4500246  0.5010965 0.8980798 1.0781006  3656
[7820] {stalk.root=b,                                                                                             
        ring.number=o}              => {veil.color=w}               0.4500246  1.0000000 0.4500246 1.0252398  3656
[7821] {stalk.root=b,                                                                                             
        veil.color=w}               => {ring.number=o}              0.4500246  0.9682203 0.4647957 1.0504570  3656
[7822] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.root=b}               0.4500246  0.5016465 0.8970950 1.0792840  3656
[7823] {gill.attachment=f,                                                                                        
        stalk.root=b}               => {veil.color=w}               0.4647957  1.0000000 0.4647957 1.0252398  3776
[7824] {stalk.root=b,                                                                                             
        veil.color=w}               => {gill.attachment=f}          0.4647957  1.0000000 0.4647957 1.0265353  3776
[7825] {class=p,                                                                                                  
        ring.type=p}                => {stalk.color.below.ring=w}   0.1004431  1.0000000 0.1004431 1.8531022   816
[7826] {class=p,                                                                                                  
        ring.type=p}                => {stalk.color.above.ring=w}   0.1004431  1.0000000 0.1004431 1.8198925   816
[7827] {class=p,                                                                                                  
        ring.type=p}                => {gill.attachment=f}          0.1004431  1.0000000 0.1004431 1.0265353   816
[7828] {class=p,                                                                                                  
        ring.type=p}                => {veil.color=w}               0.1004431  1.0000000 0.1004431 1.0252398   816
[7829] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {population=v}               0.1605121  0.7761905 0.2067947 1.5608345  1304
[7830] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {class=p}                    0.1605121  0.7342342 0.2186115 1.5232173  1304
[7831] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {population=v}               0.1644510  0.7803738 0.2107336 1.5692468  1336
[7832] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {class=p}                    0.1644510  0.7198276 0.2284589 1.4933298  1336
[7833] {class=p,                                                                                                  
        population=v}               => {stalk.shape=t}              0.2304284  0.6573034 0.3505662 1.1588395  1872
[7834] {class=p,                                                                                                  
        stalk.shape=t}              => {population=v}               0.2304284  0.9285714 0.2481536 1.8672560  1872
[7835] {stalk.shape=t,                                                                                            
        population=v}               => {class=p}                    0.2304284  0.6610169 0.3485968 1.3713232  1872
[7836] {class=p,                                                                                                  
        population=v}               => {bruises=f}                  0.3082226  0.8792135 0.3505662 1.5043661  2504
[7837] {class=p,                                                                                                  
        bruises=f}                  => {population=v}               0.3082226  0.7606318 0.4052191 1.5295478  2504
[7838] {bruises=f,                                                                                                
        population=v}               => {class=p}                    0.3082226  0.9205882 0.3348104 1.9098209  2504
[7839] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {population=v}               0.1516494  0.8020833 0.1890694 1.6129022  1232
[7840] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {class=p}                    0.1516494  0.5185185 0.2924668 1.0757008  1232
[7841] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {population=v}               0.1516494  0.8020833 0.1890694 1.6129022  1232
[7842] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {class=p}                    0.1516494  0.5133333 0.2954210 1.0649438  1232
[7843] {class=p,                                                                                                  
        gill.size=b}                => {population=v}               0.1063516  0.5106383 0.2082718 1.0268380   864
[7844] {class=p,                                                                                                  
        population=v}               => {gill.spacing=c}             0.3446578  0.9831461 0.3505662 1.1725013  2800
[7845] {class=p,                                                                                                  
        gill.spacing=c}             => {population=v}               0.3446578  0.7360673 0.4682422 1.4801512  2800
[7846] {gill.spacing=c,                                                                                           
        population=v}               => {class=p}                    0.3446578  0.7276507 0.4736583 1.5095594  2800
[7847] {class=p,                                                                                                  
        population=v}               => {ring.number=o}              0.3417036  0.9747191 0.3505662 1.0575077  2776
[7848] {class=p,                                                                                                  
        ring.number=o}              => {population=v}               0.3417036  0.7289916 0.4687346 1.4659227  2776
[7849] {ring.number=o,                                                                                            
        population=v}               => {class=p}                    0.3417036  0.7024291 0.4864599 1.4572355  2776
[7850] {class=p,                                                                                                  
        population=v}               => {gill.attachment=f}          0.3505662  1.0000000 0.3505662 1.0265353  2848
[7851] {class=p,                                                                                                  
        gill.attachment=f}          => {population=v}               0.3505662  0.7306311 0.4798129 1.4692196  2848
[7852] {gill.attachment=f,                                                                                        
        population=v}               => {class=p}                    0.3505662  0.7221095 0.4854751 1.4980638  2848
[7853] {class=p,                                                                                                  
        population=v}               => {veil.color=w}               0.3505662  1.0000000 0.3505662 1.0252398  2848
[7854] {class=p,                                                                                                  
        veil.color=w}               => {population=v}               0.3505662  0.7287615 0.4810438 1.4654600  2848
[7855] {veil.color=w,                                                                                             
        population=v}               => {class=p}                    0.3505662  0.7221095 0.4854751 1.4980638  2848
[7856] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.1536189  0.7428571 0.2067947 1.3519201  1248
[7857] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.1536189  0.7289720 0.2107336 1.3508595  1248
[7858] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1418021  0.6857143 0.2067947 1.2089286  1152
[7859] {class=p,                                                                                                  
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1418021  0.5714286 0.2481536 1.0589155  1152
[7860] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {bruises=f}                  0.1299852  0.6285714 0.2067947 1.0755085  1056
[7861] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1358936  0.6571429 0.2067947 1.0815698  1104
[7862] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1358936  0.7187500 0.1890694 1.3319172  1104
[7863] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1358936  0.6571429 0.2067947 1.0314197  1104
[7864] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1358936  0.7187500 0.1890694 1.3319172  1104
[7865] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1939931  0.9380952 0.2067947 1.1187736  1576
[7866] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {class=p}                    0.1939931  0.5038363 0.3850320 1.0452416  1576
[7867] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {ring.number=o}              0.1979321  0.9571429 0.2067947 1.0384386  1608
[7868] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2067947  1.0000000 0.2067947 1.0265353  1680
[7869] {class=p,                                                                                                  
        stalk.color.below.ring=w}   => {veil.color=w}               0.2067947  1.0000000 0.2067947 1.0252398  1680
[7870] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1418021  0.6728972 0.2107336 1.1863318  1152
[7871] {class=p,                                                                                                  
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1418021  0.5714286 0.2481536 1.0399386  1152
[7872] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {bruises=f}                  0.1339242  0.6355140 0.2107336 1.0873875  1088
[7873] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1358936  0.6448598 0.2107336 1.0613535  1104
[7874] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1358936  0.7187500 0.1890694 1.3080477  1104
[7875] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1358936  0.6448598 0.2107336 1.0121409  1104
[7876] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1358936  0.7187500 0.1890694 1.3080477  1104
[7877] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1979321  0.9392523 0.2107336 1.1201535  1608
[7878] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {class=p}                    0.1979321  0.5088608 0.3889710 1.0556652  1608
[7879] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {ring.number=o}              0.2018710  0.9579439 0.2107336 1.0393078  1640
[7880] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2107336  1.0000000 0.2107336 1.0265353  1712
[7881] {class=p,                                                                                                  
        stalk.color.above.ring=w}   => {veil.color=w}               0.2107336  1.0000000 0.2107336 1.0252398  1712
[7882] {class=p,                                                                                                  
        stalk.shape=t}              => {bruises=f}                  0.2127031  0.8571429 0.2481536 1.4666025  1728
[7883] {class=p,                                                                                                  
        bruises=f}                  => {stalk.shape=t}              0.2127031  0.5249089 0.4052191 0.9254253  1728
[7884] {bruises=f,                                                                                                
        stalk.shape=t}              => {class=p}                    0.2127031  0.6923077 0.3072378 1.4362379  1728
[7885] {class=p,                                                                                                  
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1240768  0.5000000 0.2481536 0.8229335  1008
[7886] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1240768  0.6562500 0.1890694 1.1569824  1008
[7887] {class=p,                                                                                                  
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1240768  0.5000000 0.2481536 0.7847759  1008
[7888] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1240768  0.6562500 0.1890694 1.1569824  1008
[7889] {class=p,                                                                                                  
        stalk.shape=t}              => {gill.spacing=c}             0.2481536  1.0000000 0.2481536 1.1926013  2016
[7890] {class=p,                                                                                                  
        gill.spacing=c}             => {stalk.shape=t}              0.2481536  0.5299685 0.4682422 0.9343454  2016
[7891] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {class=p}                    0.2481536  0.5384615 0.4608567 1.1170739  2016
[7892] {class=p,                                                                                                  
        stalk.shape=t}              => {ring.number=o}              0.2481536  1.0000000 0.2481536 1.0849359  2016
[7893] {class=p,                                                                                                  
        ring.number=o}              => {stalk.shape=t}              0.2481536  0.5294118 0.4687346 0.9333640  2016
[7894] {class=p,                                                                                                  
        stalk.shape=t}              => {gill.attachment=f}          0.2481536  1.0000000 0.2481536 1.0265353  2016
[7895] {class=p,                                                                                                  
        gill.attachment=f}          => {stalk.shape=t}              0.2481536  0.5171883 0.4798129 0.9118138  2016
[7896] {class=p,                                                                                                  
        stalk.shape=t}              => {veil.color=w}               0.2481536  1.0000000 0.2481536 1.0252398  2016
[7897] {class=p,                                                                                                  
        veil.color=w}               => {stalk.shape=t}              0.2481536  0.5158649 0.4810438 0.9094806  2016
[7898] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {bruises=f}                  0.1299852  0.6875000 0.1890694 1.1763374  1056
[7899] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {class=p}                    0.1299852  0.5569620 0.2333826 1.1554544  1056
[7900] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {bruises=f}                  0.1299852  0.6875000 0.1890694 1.1763374  1056
[7901] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {class=p}                    0.1299852  0.5432099 0.2392910 1.1269247  1056
[7902] {class=p,                                                                                                  
        gill.size=b}                => {bruises=f}                  0.1639586  0.7872340 0.2082718 1.3469860  1332
[7903] {bruises=f,                                                                                                
        gill.size=b}                => {class=p}                    0.1639586  0.5130971 0.3195470 1.0644537  1332
[7904] {class=p,                                                                                                  
        bruises=f}                  => {gill.spacing=c}             0.3924175  0.9684083 0.4052191 1.1549249  3188
[7905] {class=p,                                                                                                  
        gill.spacing=c}             => {bruises=f}                  0.3924175  0.8380652 0.4682422 1.4339599  3188
[7906] {bruises=f,                                                                                                
        gill.spacing=c}             => {class=p}                    0.3924175  0.9005650 0.4357459 1.8682814  3188
[7907] {class=p,                                                                                                  
        bruises=f}                  => {ring.number=o}              0.4007878  0.9890644 0.4052191 1.0730715  3256
[7908] {class=p,                                                                                                  
        ring.number=o}              => {bruises=f}                  0.4007878  0.8550420 0.4687346 1.4630079  3256
[7909] {bruises=f,                                                                                                
        ring.number=o}              => {class=p}                    0.4007878  0.7386570 0.5425899 1.5323926  3256
[7910] {class=p,                                                                                                  
        bruises=f}                  => {gill.attachment=f}          0.4030034  0.9945322 0.4052191 1.0209224  3274
[7911] {class=p,                                                                                                  
        gill.attachment=f}          => {bruises=f}                  0.4030034  0.8399179 0.4798129 1.4371300  3274
[7912] {bruises=f,                                                                                                
        gill.attachment=f}          => {class=p}                    0.4030034  0.7214632 0.5585918 1.4967229  3274
[7913] {class=p,                                                                                                  
        bruises=f}                  => {veil.color=w}               0.4042344  0.9975699 0.4052191 1.0227483  3284
[7914] {class=p,                                                                                                  
        veil.color=w}               => {bruises=f}                  0.4042344  0.8403275 0.4810438 1.4378309  3284
[7915] {bruises=f,                                                                                                
        veil.color=w}               => {class=p}                    0.4042344  0.7220756 0.5598227 1.4979935  3284
[7916] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1270310  0.6718750 0.1890694 1.0545426  1032
[7917] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1270310  0.6718750 0.1890694 1.1058170  1032
[7918] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1762678  0.9322917 0.1890694 1.1118522  1432
[7919] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {ring.number=o}              0.1802068  0.9531250 0.1890694 1.0340795  1464
[7920] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.1890694  1.0000000 0.1890694 1.0265353  1536
[7921] {class=p,                                                                                                  
        stalk.surface.below.ring=s} => {veil.color=w}               0.1890694  1.0000000 0.1890694 1.0252398  1536
[7922] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1762678  0.9322917 0.1890694 1.1118522  1432
[7923] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {ring.number=o}              0.1802068  0.9531250 0.1890694 1.0340795  1464
[7924] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.1890694  1.0000000 0.1890694 1.0265353  1536
[7925] {class=p,                                                                                                  
        stalk.surface.above.ring=s} => {veil.color=w}               0.1890694  1.0000000 0.1890694 1.0252398  1536
[7926] {class=p,                                                                                                  
        gill.size=b}                => {gill.spacing=c}             0.2082718  1.0000000 0.2082718 1.1926013  1692
[7927] {class=p,                                                                                                  
        gill.size=b}                => {ring.number=o}              0.1949778  0.9361702 0.2082718 1.0156847  1584
[7928] {class=p,                                                                                                  
        gill.size=b}                => {gill.attachment=f}          0.2060561  0.9893617 0.2082718 1.0156147  1674
[7929] {class=p,                                                                                                  
        gill.size=b}                => {veil.color=w}               0.2082718  1.0000000 0.2082718 1.0252398  1692
[7930] {class=p,                                                                                                  
        gill.spacing=c}             => {ring.number=o}              0.4549483  0.9716088 0.4682422 1.0541333  3696
[7931] {class=p,                                                                                                  
        ring.number=o}              => {gill.spacing=c}             0.4549483  0.9705882 0.4687346 1.1575248  3696
[7932] {gill.spacing=c,                                                                                           
        ring.number=o}              => {class=p}                    0.4549483  0.5717822 0.7956672 1.1861998  3696
[7933] {class=p,                                                                                                  
        gill.spacing=c}             => {gill.attachment=f}          0.4660266  0.9952681 0.4682422 1.0216778  3786
[7934] {class=p,                                                                                                  
        gill.attachment=f}          => {gill.spacing=c}             0.4660266  0.9712673 0.4798129 1.1583347  3786
[7935] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {class=p}                    0.4660266  0.5734626 0.8126539 1.1896859  3786
[7936] {class=p,                                                                                                  
        gill.spacing=c}             => {veil.color=w}               0.4682422  1.0000000 0.4682422 1.0252398  3804
[7937] {class=p,                                                                                                  
        veil.color=w}               => {gill.spacing=c}             0.4682422  0.9733879 0.4810438 1.1608637  3804
[7938] {gill.spacing=c,                                                                                           
        veil.color=w}               => {class=p}                    0.4682422  0.5746224 0.8148695 1.1920919  3804
[7939] {class=p,                                                                                                  
        ring.number=o}              => {gill.attachment=f}          0.4687346  1.0000000 0.4687346 1.0265353  3808
[7940] {class=p,                                                                                                  
        gill.attachment=f}          => {ring.number=o}              0.4687346  0.9769112 0.4798129 1.0598861  3808
[7941] {gill.attachment=f,                                                                                        
        ring.number=o}              => {class=p}                    0.4687346  0.5219298 0.8980798 1.0827778  3808
[7942] {class=p,                                                                                                  
        ring.number=o}              => {veil.color=w}               0.4677499  0.9978992 0.4687346 1.0230859  3800
[7943] {class=p,                                                                                                  
        veil.color=w}               => {ring.number=o}              0.4677499  0.9723644 0.4810438 1.0549530  3800
[7944] {veil.color=w,                                                                                             
        ring.number=o}              => {class=p}                    0.4677499  0.5214050 0.8970950 1.0816891  3800
[7945] {class=p,                                                                                                  
        gill.attachment=f}          => {veil.color=w}               0.4788282  0.9979477 0.4798129 1.0231356  3890
[7946] {class=p,                                                                                                  
        veil.color=w}               => {gill.attachment=f}          0.4788282  0.9953941 0.4810438 1.0218071  3890
[7947] {ring.type=p,                                                                                              
        population=v}               => {class=e}                    0.1378631  0.7179487 0.1920236 1.3860778  1120
[7948] {class=e,                                                                                                  
        population=v}               => {ring.type=p}                0.1378631  0.9395973 0.1467258 1.9237118  1120
[7949] {ring.type=p,                                                                                              
        population=v}               => {stalk.color.below.ring=w}   0.1093058  0.5692308 0.1920236 1.0548428   888
[7950] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {ring.type=p}                0.1093058  0.5000000 0.2186115 1.0236895   888
[7951] {ring.type=p,                                                                                              
        population=v}               => {stalk.color.above.ring=w}   0.1093058  0.5692308 0.1920236 1.0359388   888
[7952] {ring.type=p,                                                                                              
        population=v}               => {stalk.shape=t}              0.1358936  0.7076923 0.1920236 1.2476763  1104
[7953] {stalk.shape=t,                                                                                            
        ring.type=p}                => {population=v}               0.1358936  0.5227273 0.2599705 1.0511476  1104
[7954] {ring.type=p,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1831610  0.9538462 0.1920236 1.5699040  1488
[7955] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {ring.type=p}                0.1831610  0.6262626 0.2924668 1.2821970  1488
[7956] {ring.type=p,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1831610  0.9538462 0.1920236 1.4971109  1488
[7957] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {ring.type=p}                0.1831610  0.6200000 0.2954210 1.2693750  1488
[7958] {ring.type=p,                                                                                              
        population=v}               => {gill.size=b}                0.1467258  0.7641026 0.1920236 1.1061242  1192
[7959] {gill.size=b,                                                                                              
        population=v}               => {ring.type=p}                0.1467258  0.6478261 0.2264894 1.3263455  1192
[7960] {ring.type=p,                                                                                              
        population=v}               => {gill.spacing=c}             0.1742984  0.9076923 0.1920236 1.0825150  1416
[7961] {ring.type=p,                                                                                              
        population=v}               => {ring.number=o}              0.1811915  0.9435897 0.1920236 1.0237344  1472
[7962] {ring.type=p,                                                                                              
        population=v}               => {gill.attachment=f}          0.1802068  0.9384615 0.1920236 0.9633639  1464
[7963] {ring.type=p,                                                                                              
        population=v}               => {veil.color=w}               0.1802068  0.9384615 0.1920236 0.9621481  1464
[7964] {class=e,                                                                                                  
        ring.type=p}                => {stalk.color.below.ring=w}   0.2205810  0.5685279 0.3879862 1.0535403  1792
[7965] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {class=e}                    0.2205810  0.6871166 0.3210241 1.3265530  1792
[7966] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {ring.type=p}                0.2205810  0.6627219 0.3328410 1.3568429  1792
[7967] {class=e,                                                                                                  
        ring.type=p}                => {stalk.color.above.ring=w}   0.2205810  0.5685279 0.3879862 1.0346597  1792
[7968] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {class=e}                    0.2205810  0.6871166 0.3210241 1.3265530  1792
[7969] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {ring.type=p}                0.2205810  0.6511628 0.3387494 1.3331770  1792
[7970] {class=e,                                                                                                  
        ring.type=p}                => {stalk.shape=t}              0.2245199  0.5786802 0.3879862 1.0202253  1824
[7971] {stalk.shape=t,                                                                                            
        ring.type=p}                => {class=e}                    0.2245199  0.8636364 0.2599705 1.6673436  1824
[7972] {class=e,                                                                                                  
        stalk.shape=t}              => {ring.type=p}                0.2245199  0.7037037 0.3190547 1.4407482  1824
[7973] {class=e,                                                                                                  
        ring.type=p}                => {stalk.surface.below.ring=s} 0.3446578  0.8883249 0.3879862 1.4620647  2800
[7974] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {class=e}                    0.3446578  0.8064516 0.4273757 1.5569422  2800
[7975] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {ring.type=p}                0.3446578  0.8235294 0.4185130 1.6860769  2800
[7976] {class=e,                                                                                                  
        ring.type=p}                => {stalk.surface.above.ring=s} 0.3682915  0.9492386 0.3879862 1.4898791  2992
[7977] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {class=e}                    0.3682915  0.8165939 0.4510094 1.5765230  2992
[7978] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {ring.type=p}                0.3682915  0.8219780 0.4480551 1.6829006  2992
[7979] {class=e,                                                                                                  
        ring.type=p}                => {gill.size=b}                0.3643525  0.9390863 0.3879862 1.3594328  2960
[7980] {gill.size=b,                                                                                              
        ring.type=p}                => {class=e}                    0.3643525  0.8915663 0.4086657 1.7212653  2960
[7981] {class=e,                                                                                                  
        gill.size=b}                => {ring.type=p}                0.3643525  0.7551020 0.4825209 1.5459801  2960
[7982] {class=e,                                                                                                  
        ring.type=p}                => {gill.spacing=c}             0.3407189  0.8781726 0.3879862 1.0473098  2768
[7983] {gill.spacing=c,                                                                                           
        ring.type=p}                => {class=e}                    0.3407189  0.7954023 0.4283604 1.5356103  2768
[7984] {class=e,                                                                                                  
        gill.spacing=c}             => {ring.type=p}                0.3407189  0.9202128 0.3702610 1.8840243  2768
[7985] {class=e,                                                                                                  
        ring.type=p}                => {ring.number=o}              0.3466273  0.8934010 0.3879862 0.9692828  2816
[7986] {ring.number=o,                                                                                            
        ring.type=p}                => {class=e}                    0.3466273  0.7910112 0.4382078 1.5271329  2816
[7987] {class=e,                                                                                                  
        ring.number=o}              => {ring.type=p}                0.3466273  0.7652174 0.4529788 1.5666900  2816
[7988] {class=e,                                                                                                  
        ring.type=p}                => {gill.attachment=f}          0.3643525  0.9390863 0.3879862 0.9640052  2960
[7989] {gill.attachment=f,                                                                                        
        ring.type=p}                => {class=e}                    0.3643525  0.7838983 0.4647957 1.5134006  2960
[7990] {class=e,                                                                                                  
        gill.attachment=f}          => {ring.type=p}                0.3643525  0.7370518 0.4943378 1.5090244  2960
[7991] {class=e,                                                                                                  
        ring.type=p}                => {veil.color=w}               0.3643525  0.9390863 0.3879862 0.9627886  2960
[7992] {veil.color=w,                                                                                             
        ring.type=p}                => {class=e}                    0.3643525  0.7838983 0.4647957 1.5134006  2960
[7993] {class=e,                                                                                                  
        veil.color=w}               => {ring.type=p}                0.3643525  0.7370518 0.4943378 1.5090244  2960
[7994] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {stalk.color.above.ring=w}   0.2737568  0.8527607 0.3210241 1.5519328  2224
[7995] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {stalk.color.below.ring=w}   0.2737568  0.8527607 0.3210241 1.5802528  2224
[7996] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {ring.type=p}                0.2737568  0.6318182 0.4332841 1.2935713  2224
[7997] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2619399  0.8159509 0.3210241 1.3429468  2128
[7998] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {stalk.color.below.ring=w}   0.2619399  0.6129032 0.4273757 1.1357723  2128
[7999] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {ring.type=p}                0.2619399  0.7000000 0.3741999 1.4331653  2128
[8000] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2855736  0.8895706 0.3210241 1.3962270  2320
[8001] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {stalk.color.below.ring=w}   0.2855736  0.6331878 0.4510094 1.1733616  2320
[8002] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {ring.type=p}                0.2855736  0.7073171 0.4037420 1.4481461  2320
[8003] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {gill.size=b}                0.2412605  0.7515337 0.3210241 1.0879295  1960
[8004] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.color.below.ring=w}   0.2412605  0.5903614 0.4086657 1.0940001  1960
[8005] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {ring.type=p}                0.2412605  0.6940510 0.3476120 1.4209854  1960
[8006] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {gill.spacing=c}             0.2609552  0.8128834 0.3210241 0.9694458  2120
[8007] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.color.below.ring=w}   0.2609552  0.6091954 0.4283604 1.1289013  2120
[8008] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {ring.type=p}                0.2609552  0.6777494 0.3850320 1.3876098  2120
[8009] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {ring.number=o}              0.2727720  0.8496933 0.3210241 0.9218627  2216
[8010] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.color.below.ring=w}   0.2727720  0.6224719 0.4382078 1.1535041  2216
[8011] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {ring.type=p}                0.2727720  0.5687885 0.4795667 1.1645257  2216
[8012] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {gill.attachment=f}          0.3210241  1.0000000 0.3210241 1.0265353  2608
[8013] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.color.below.ring=w}   0.3210241  0.6906780 0.4647957 1.2798969  2608
[8014] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {ring.type=p}                0.3210241  0.5948905 0.5396356 1.2179664  2608
[8015] {stalk.color.below.ring=w,                                                                                 
        ring.type=p}                => {veil.color=w}               0.3210241  1.0000000 0.3210241 1.0252398  2608
[8016] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.color.below.ring=w}   0.3210241  0.6906780 0.4647957 1.2798969  2608
[8017] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {ring.type=p}                0.3210241  0.5948905 0.5396356 1.2179664  2608
[8018] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2619399  0.8159509 0.3210241 1.3429468  2128
[8019] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {stalk.color.above.ring=w}   0.2619399  0.6129032 0.4273757 1.1154180  2128
[8020] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {ring.type=p}                0.2619399  0.6945170 0.3771541 1.4219395  2128
[8021] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2855736  0.8895706 0.3210241 1.3962270  2320
[8022] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {stalk.color.above.ring=w}   0.2855736  0.6331878 0.4510094 1.1523337  2320
[8023] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {ring.type=p}                0.2855736  0.7021792 0.4066962 1.4376269  2320
[8024] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {gill.size=b}                0.2412605  0.7515337 0.3210241 1.0879295  1960
[8025] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.color.above.ring=w}   0.2412605  0.5903614 0.4086657 1.0743944  1960
[8026] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {ring.type=p}                0.2412605  0.6940510 0.3476120 1.4209854  1960
[8027] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {gill.spacing=c}             0.2609552  0.8128834 0.3210241 0.9694458  2120
[8028] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.color.above.ring=w}   0.2609552  0.6091954 0.4283604 1.1086701  2120
[8029] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {ring.type=p}                0.2609552  0.6708861 0.3889710 1.3735581  2120
[8030] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {ring.number=o}              0.2727720  0.8496933 0.3210241 0.9218627  2216
[8031] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.color.above.ring=w}   0.2727720  0.6224719 0.4382078 1.1328319  2216
[8032] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {ring.type=p}                0.2727720  0.5573441 0.4894141 1.1410946  2216
[8033] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {gill.attachment=f}          0.3210241  1.0000000 0.3210241 1.0265353  2608
[8034] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.color.above.ring=w}   0.3210241  0.6906780 0.4647957 1.2569596  2608
[8035] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {ring.type=p}                0.3210241  0.5842294 0.5494830 1.1961390  2608
[8036] {stalk.color.above.ring=w,                                                                                 
        ring.type=p}                => {veil.color=w}               0.3210241  1.0000000 0.3210241 1.0252398  2608
[8037] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.color.above.ring=w}   0.3210241  0.6906780 0.4647957 1.2569596  2608
[8038] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {ring.type=p}                0.3210241  0.5842294 0.5494830 1.1961390  2608
[8039] {stalk.shape=t,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.2422452  0.9318182 0.2599705 1.5336489  1968
[8040] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {stalk.shape=t}              0.2422452  0.5668203 0.4273757 0.9993160  1968
[8041] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {ring.type=p}                0.2422452  0.6119403 0.3958641 1.2528737  1968
[8042] {stalk.shape=t,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.2422452  0.9318182 0.2599705 1.4625369  1968
[8043] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {stalk.shape=t}              0.2422452  0.5371179 0.4510094 0.9469501  1968
[8044] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {ring.type=p}                0.2422452  0.6119403 0.3958641 1.2528737  1968
[8045] {stalk.shape=t,                                                                                            
        ring.type=p}                => {gill.size=b}                0.2481536  0.9545455 0.2599705 1.3818117  2016
[8046] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.shape=t}              0.2481536  0.6072289 0.4086657 1.0705572  2016
[8047] {gill.size=b,                                                                                              
        stalk.shape=t}              => {ring.type=p}                0.2481536  0.7241379 0.3426883 1.4825848  2016
[8048] {stalk.shape=t,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.2481536  0.9545455 0.2599705 1.1383921  2016
[8049] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.shape=t}              0.2481536  0.5793103 0.4283604 1.0213362  2016
[8050] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {ring.type=p}                0.2481536  0.5384615 0.4608567 1.1024349  2016
[8051] {stalk.shape=t,                                                                                            
        ring.type=p}                => {ring.number=o}              0.2599705  1.0000000 0.2599705 1.0849359  2112
[8052] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.shape=t}              0.2599705  0.5932584 0.4382078 1.0459270  2112
[8053] {stalk.shape=t,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.2599705  1.0000000 0.2599705 1.0265353  2112
[8054] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.shape=t}              0.2599705  0.5593220 0.4647957 0.9860964  2112
[8055] {stalk.shape=t,                                                                                            
        ring.type=p}                => {veil.color=w}               0.2599705  1.0000000 0.2599705 1.0252398  2112
[8056] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.shape=t}              0.2599705  0.5593220 0.4647957 0.9860964  2112
[8057] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {stalk.surface.above.ring=s} 0.4096504  0.9585253 0.4273757 1.5044552  3328
[8058] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {stalk.surface.below.ring=s} 0.4096504  0.9082969 0.4510094 1.4949361  3328
[8059] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {ring.type=p}                0.4096504  0.8007700 0.5115707 1.6394796  3328
[8060] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {gill.size=b}                0.3476120  0.8133641 0.4273757 1.1774358  2824
[8061] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.surface.below.ring=s} 0.3476120  0.8506024 0.4086657 1.3999785  2824
[8062] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {ring.type=p}                0.3476120  0.8305882 0.4185130 1.7005289  2824
[8063] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {gill.spacing=c}             0.3850320  0.9009217 0.4273757 1.0744403  3128
[8064] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.surface.below.ring=s} 0.3850320  0.8988506 0.4283604 1.4793886  3128
[8065] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {ring.type=p}                0.3850320  0.7476099 0.5150172 1.5306409  3128
[8066] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {ring.number=o}              0.3968488  0.9285714 0.4273757 1.0074405  3224
[8067] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.surface.below.ring=s} 0.3968488  0.9056180 0.4382078 1.4905268  3224
[8068] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {ring.type=p}                0.3968488  0.7170819 0.5534220 1.4681383  3224
[8069] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {gill.attachment=f}          0.4037420  0.9447005 0.4273757 0.9697683  3280
[8070] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.surface.below.ring=s} 0.4037420  0.8686441 0.4647957 1.4296727  3280
[8071] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {ring.type=p}                0.4037420  0.6913997 0.5839488 1.4155572  3280
[8072] {stalk.surface.below.ring=s,                                                                               
        ring.type=p}                => {veil.color=w}               0.4037420  0.9447005 0.4273757 0.9685445  3280
[8073] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.surface.below.ring=s} 0.4037420  0.8686441 0.4647957 1.4296727  3280
[8074] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {ring.type=p}                0.4037420  0.6913997 0.5839488 1.4155572  3280
[8075] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {gill.size=b}                0.3712457  0.8231441 0.4510094 1.1915935  3016
[8076] {gill.size=b,                                                                                              
        ring.type=p}                => {stalk.surface.above.ring=s} 0.3712457  0.9084337 0.4086657 1.4258338  3016
[8077] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {ring.type=p}                0.3712457  0.8396437 0.4421467 1.7190688  3016
[8078] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {gill.spacing=c}             0.4086657  0.9061135 0.4510094 1.0806322  3320
[8079] {gill.spacing=c,                                                                                           
        ring.type=p}                => {stalk.surface.above.ring=s} 0.4086657  0.9540230 0.4283604 1.4973885  3320
[8080] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {ring.type=p}                0.4086657  0.7504521 0.5445593 1.5364599  3320
[8081] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {ring.number=o}              0.4204825  0.9323144 0.4510094 1.0115014  3416
[8082] {ring.number=o,                                                                                            
        ring.type=p}                => {stalk.surface.above.ring=s} 0.4204825  0.9595506 0.4382078 1.5060643  3416
[8083] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {ring.type=p}                0.4204825  0.7212838 0.5829641 1.4767413  3416
[8084] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {gill.attachment=f}          0.4273757  0.9475983 0.4510094 0.9727430  3472
[8085] {gill.attachment=f,                                                                                        
        ring.type=p}                => {stalk.surface.above.ring=s} 0.4273757  0.9194915 0.4647957 1.4431896  3472
[8086] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {ring.type=p}                0.4273757  0.6966292 0.6134909 1.4262640  3472
[8087] {stalk.surface.above.ring=s,                                                                               
        ring.type=p}                => {veil.color=w}               0.4273757  0.9475983 0.4510094 0.9715154  3472
[8088] {veil.color=w,                                                                                             
        ring.type=p}                => {stalk.surface.above.ring=s} 0.4273757  0.9194915 0.4647957 1.4431896  3472
[8089] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {ring.type=p}                0.4273757  0.6966292 0.6134909 1.4262640  3472
[8090] {gill.size=b,                                                                                              
        ring.type=p}                => {gill.spacing=c}             0.3732152  0.9132530 0.4086657 1.0891467  3032
[8091] {gill.spacing=c,                                                                                           
        ring.type=p}                => {gill.size=b}                0.3732152  0.8712644 0.4283604 1.2612530  3032
[8092] {gill.spacing=c,                                                                                           
        gill.size=b}                => {ring.type=p}                0.3732152  0.6654960 0.5608075 1.3625227  3032
[8093] {gill.size=b,                                                                                              
        ring.type=p}                => {ring.number=o}              0.3584441  0.8771084 0.4086657 0.9516064  2912
[8094] {ring.number=o,                                                                                            
        ring.type=p}                => {gill.size=b}                0.3584441  0.8179775 0.4382078 1.1841143  2912
[8095] {gill.size=b,                                                                                              
        ring.number=o}              => {ring.type=p}                0.3584441  0.5852090 0.6125062 1.1981446  2912
[8096] {gill.size=b,                                                                                              
        ring.type=p}                => {gill.attachment=f}          0.3850320  0.9421687 0.4086657 0.9671694  3128
[8097] {gill.attachment=f,                                                                                        
        ring.type=p}                => {gill.size=b}                0.3850320  0.8283898 0.4647957 1.1991873  3128
[8098] {gill.attachment=f,                                                                                        
        gill.size=b}                => {ring.type=p}                0.3850320  0.5790448 0.6649434 1.1855242  3128
[8099] {gill.size=b,                                                                                              
        ring.type=p}                => {veil.color=w}               0.3850320  0.9421687 0.4086657 0.9659488  3128
[8100] {veil.color=w,                                                                                             
        ring.type=p}                => {gill.size=b}                0.3850320  0.8283898 0.4647957 1.1991873  3128
[8101] {gill.size=b,                                                                                              
        veil.color=w}               => {ring.type=p}                0.3850320  0.5771218 0.6671590 1.1815870  3128
[8102] {gill.spacing=c,                                                                                           
        ring.type=p}                => {ring.number=o}              0.4135894  0.9655172 0.4283604 1.0475243  3360
[8103] {ring.number=o,                                                                                            
        ring.type=p}                => {gill.spacing=c}             0.4135894  0.9438202 0.4382078 1.1256012  3360
[8104] {gill.spacing=c,                                                                                           
        ring.number=o}              => {ring.type=p}                0.4135894  0.5198020 0.7956672 1.0642317  3360
[8105] {gill.spacing=c,                                                                                           
        ring.type=p}                => {gill.attachment=f}          0.4047267  0.9448276 0.4283604 0.9698988  3288
[8106] {gill.attachment=f,                                                                                        
        ring.type=p}                => {gill.spacing=c}             0.4047267  0.8707627 0.4647957 1.0384727  3288
[8107] {gill.spacing=c,                                                                                           
        ring.type=p}                => {veil.color=w}               0.4047267  0.9448276 0.4283604 0.9686748  3288
[8108] {veil.color=w,                                                                                             
        ring.type=p}                => {gill.spacing=c}             0.4047267  0.8707627 0.4647957 1.0384727  3288
[8109] {ring.number=o,                                                                                            
        ring.type=p}                => {gill.attachment=f}          0.4145741  0.9460674 0.4382078 0.9711716  3368
[8110] {gill.attachment=f,                                                                                        
        ring.type=p}                => {ring.number=o}              0.4145741  0.8919492 0.4647957 0.9677077  3368
[8111] {ring.number=o,                                                                                            
        ring.type=p}                => {veil.color=w}               0.4145741  0.9460674 0.4382078 0.9699459  3368
[8112] {veil.color=w,                                                                                             
        ring.type=p}                => {ring.number=o}              0.4145741  0.8919492 0.4647957 0.9677077  3368
[8113] {gill.attachment=f,                                                                                        
        ring.type=p}                => {veil.color=w}               0.4647957  1.0000000 0.4647957 1.0252398  3776
[8114] {veil.color=w,                                                                                             
        ring.type=p}                => {gill.attachment=f}          0.4647957  1.0000000 0.4647957 1.0265353  3776
[8115] {class=e,                                                                                                  
        population=v}               => {stalk.shape=t}              0.1181684  0.8053691 0.1467258 1.4198826   960
[8116] {class=e,                                                                                                  
        population=v}               => {stalk.surface.below.ring=s} 0.1408173  0.9597315 0.1467258 1.5795906  1144
[8117] {class=e,                                                                                                  
        population=v}               => {stalk.surface.above.ring=s} 0.1437715  0.9798658 0.1467258 1.5379501  1168
[8118] {class=e,                                                                                                  
        population=v}               => {gill.size=b}                0.1201379  0.8187919 0.1467258 1.1852933   976
[8119] {gill.size=b,                                                                                              
        population=v}               => {class=e}                    0.1201379  0.5304348 0.2264894 1.0240618   976
[8120] {class=e,                                                                                                  
        population=v}               => {gill.spacing=c}             0.1290005  0.8791946 0.1467258 1.0485287  1048
[8121] {class=e,                                                                                                  
        population=v}               => {ring.number=o}              0.1447563  0.9865772 0.1467258 1.0703730  1176
[8122] {class=e,                                                                                                  
        population=v}               => {gill.attachment=f}          0.1349089  0.9194631 0.1467258 0.9438613  1096
[8123] {class=e,                                                                                                  
        population=v}               => {veil.color=w}               0.1349089  0.9194631 0.1467258 0.9426701  1096
[8124] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {stalk.color.above.ring=w}   0.1418021  0.6486486 0.2186115 1.1804708  1152
[8125] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {stalk.color.below.ring=w}   0.1418021  0.6206897 0.2284589 1.1502014  1152
[8126] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {stalk.shape=t}              0.1713442  0.7837838 0.2186115 1.3818271  1392
[8127] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {population=v}               0.1713442  0.5370370 0.3190547 1.0799230  1392
[8128] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {bruises=f}                  0.1270310  0.5810811 0.2186115 0.9942508  1032
[8129] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {stalk.surface.below.ring=s} 0.1536189  0.7027027 0.2186115 1.1565553  1248
[8130] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {stalk.color.below.ring=w}   0.1536189  0.5252525 0.2924668 0.9733466  1248
[8131] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {stalk.surface.above.ring=s} 0.1565731  0.7162162 0.2186115 1.1241384  1272
[8132] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {stalk.color.below.ring=w}   0.1565731  0.5300000 0.2954210 0.9821442  1272
[8133] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {gill.spacing=c}             0.2008863  0.9189189 0.2186115 1.0959039  1632
[8134] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {population=v}               0.2008863  0.5217391 0.3850320 1.0491606  1632
[8135] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {ring.number=o}              0.2077794  0.9504505 0.2186115 1.0311778  1688
[8136] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {gill.attachment=f}          0.2186115  1.0000000 0.2186115 1.0265353  1776
[8137] {stalk.color.below.ring=w,                                                                                 
        population=v}               => {veil.color=w}               0.2186115  1.0000000 0.2186115 1.0252398  1776
[8138] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {stalk.shape=t}              0.1713442  0.7500000 0.2284589 1.3222656  1392
[8139] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {population=v}               0.1713442  0.5370370 0.3190547 1.0799230  1392
[8140] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {bruises=f}                  0.1368784  0.5991379 0.2284589 1.0251467  1112
[8141] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {stalk.surface.below.ring=s} 0.1565731  0.6853448 0.2284589 1.1279865  1272
[8142] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {stalk.color.above.ring=w}   0.1565731  0.5353535 0.2924668 0.9742859  1272
[8143] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {stalk.surface.above.ring=s} 0.1595273  0.6982759 0.2284589 1.0959801  1296
[8144] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {stalk.color.above.ring=w}   0.1595273  0.5400000 0.2954210 0.9827419  1296
[8145] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {gill.spacing=c}             0.2048252  0.8965517 0.2284589 1.0692287  1664
[8146] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {population=v}               0.2048252  0.5265823 0.3889710 1.0588996  1664
[8147] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {ring.number=o}              0.2176268  0.9525862 0.2284589 1.0334950  1768
[8148] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {gill.attachment=f}          0.2284589  1.0000000 0.2284589 1.0265353  1856
[8149] {stalk.color.above.ring=w,                                                                                 
        population=v}               => {veil.color=w}               0.2284589  1.0000000 0.2284589 1.0252398  1856
[8150] {stalk.shape=t,                                                                                            
        population=v}               => {bruises=f}                  0.2127031  0.6101695 0.3485968 1.0440221  1728
[8151] {bruises=f,                                                                                                
        population=v}               => {stalk.shape=t}              0.2127031  0.6352941 0.3348104 1.1200368  1728
[8152] {bruises=f,                                                                                                
        stalk.shape=t}              => {population=v}               0.2127031  0.6923077 0.3072378 1.3921554  1728
[8153] {stalk.shape=t,                                                                                            
        population=v}               => {stalk.surface.below.ring=s} 0.2333826  0.6694915 0.3485968 1.1018941  1896
[8154] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {stalk.shape=t}              0.2333826  0.7979798 0.2924668 1.4068550  1896
[8155] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {population=v}               0.2333826  0.5895522 0.3958641 1.1855253  1896
[8156] {stalk.shape=t,                                                                                            
        population=v}               => {stalk.surface.above.ring=s} 0.2333826  0.6694915 0.3485968 1.0508016  1896
[8157] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {stalk.shape=t}              0.2333826  0.7900000 0.2954210 1.3927865  1896
[8158] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {population=v}               0.2333826  0.5895522 0.3958641 1.1855253  1896
[8159] {gill.size=b,                                                                                              
        population=v}               => {stalk.shape=t}              0.1240768  0.5478261 0.2264894 0.9658288  1008
[8160] {stalk.shape=t,                                                                                            
        population=v}               => {gill.spacing=c}             0.3367799  0.9661017 0.3485968 1.1521741  2736
[8161] {gill.spacing=c,                                                                                           
        population=v}               => {stalk.shape=t}              0.3367799  0.7110187 0.4736583 1.2535408  2736
[8162] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {population=v}               0.3367799  0.7307692 0.4608567 1.4694973  2736
[8163] {stalk.shape=t,                                                                                            
        population=v}               => {ring.number=o}              0.3485968  1.0000000 0.3485968 1.0849359  2832
[8164] {ring.number=o,                                                                                            
        population=v}               => {stalk.shape=t}              0.3485968  0.7165992 0.4864599 1.2633793  2832
[8165] {stalk.shape=t,                                                                                            
        ring.number=o}              => {population=v}               0.3485968  0.6145833 0.5672083 1.2358601  2832
[8166] {stalk.shape=t,                                                                                            
        population=v}               => {gill.attachment=f}          0.3485968  1.0000000 0.3485968 1.0265353  2832
[8167] {gill.attachment=f,                                                                                        
        population=v}               => {stalk.shape=t}              0.3485968  0.7180527 0.4854751 1.2659419  2832
[8168] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {population=v}               0.3485968  0.6145833 0.5672083 1.2358601  2832
[8169] {stalk.shape=t,                                                                                            
        population=v}               => {veil.color=w}               0.3485968  1.0000000 0.3485968 1.0252398  2832
[8170] {veil.color=w,                                                                                             
        population=v}               => {stalk.shape=t}              0.3485968  0.7180527 0.4854751 1.2659419  2832
[8171] {stalk.shape=t,                                                                                            
        veil.color=w}               => {population=v}               0.3485968  0.6145833 0.5672083 1.2358601  2832
[8172] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {population=v}               0.1388479  0.5949367 0.2333826 1.1963529  1128
[8173] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {population=v}               0.1418021  0.5925926 0.2392910 1.1916392  1152
[8174] {bruises=f,                                                                                                
        population=v}               => {gill.spacing=c}             0.3229936  0.9647059 0.3348104 1.1505095  2624
[8175] {gill.spacing=c,                                                                                           
        population=v}               => {bruises=f}                  0.3229936  0.6819127 0.4736583 1.1667773  2624
[8176] {bruises=f,                                                                                                
        gill.spacing=c}             => {population=v}               0.3229936  0.7412429 0.4357459 1.4905588  2624
[8177] {bruises=f,                                                                                                
        population=v}               => {ring.number=o}              0.3348104  1.0000000 0.3348104 1.0849359  2720
[8178] {ring.number=o,                                                                                            
        population=v}               => {bruises=f}                  0.3348104  0.6882591 0.4864599 1.1776363  2720
[8179] {bruises=f,                                                                                                
        ring.number=o}              => {population=v}               0.3348104  0.6170599 0.5425899 1.2408402  2720
[8180] {bruises=f,                                                                                                
        population=v}               => {gill.attachment=f}          0.3229936  0.9647059 0.3348104 0.9903046  2624
[8181] {gill.attachment=f,                                                                                        
        population=v}               => {bruises=f}                  0.3229936  0.6653144 0.4854751 1.1383770  2624
[8182] {bruises=f,                                                                                                
        gill.attachment=f}          => {population=v}               0.3229936  0.5782283 0.5585918 1.1627541  2624
[8183] {bruises=f,                                                                                                
        population=v}               => {veil.color=w}               0.3229936  0.9647059 0.3348104 0.9890548  2624
[8184] {veil.color=w,                                                                                             
        population=v}               => {bruises=f}                  0.3229936  0.6653144 0.4854751 1.1383770  2624
[8185] {bruises=f,                                                                                                
        veil.color=w}               => {population=v}               0.3229936  0.5769569 0.5598227 1.1601975  2624
[8186] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {stalk.surface.above.ring=s} 0.2333826  0.7979798 0.2924668 1.2524706  1896
[8187] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {stalk.surface.below.ring=s} 0.2333826  0.7900000 0.2954210 1.3002350  1896
[8188] {gill.size=b,                                                                                              
        population=v}               => {stalk.surface.below.ring=s} 0.1378631  0.6086957 0.2264894 1.0018321  1120
[8189] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {gill.spacing=c}             0.2717873  0.9292929 0.2924668 1.1082759  2208
[8190] {gill.spacing=c,                                                                                           
        population=v}               => {stalk.surface.below.ring=s} 0.2717873  0.5738046 0.4736583 0.9444061  2208
[8191] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {population=v}               0.2717873  0.5277247 0.5150172 1.0611968  2208
[8192] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {ring.number=o}              0.2816347  0.9629630 0.2924668 1.0447531  2288
[8193] {ring.number=o,                                                                                            
        population=v}               => {stalk.surface.below.ring=s} 0.2816347  0.5789474 0.4864599 0.9528704  2288
[8194] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {population=v}               0.2816347  0.5088968 0.5534220 1.0233360  2288
[8195] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {gill.attachment=f}          0.2806499  0.9595960 0.2924668 0.9850591  2280
[8196] {gill.attachment=f,                                                                                        
        population=v}               => {stalk.surface.below.ring=s} 0.2806499  0.5780933 0.4854751 0.9514648  2280
[8197] {stalk.surface.below.ring=s,                                                                               
        population=v}               => {veil.color=w}               0.2806499  0.9595960 0.2924668 0.9838159  2280
[8198] {veil.color=w,                                                                                             
        population=v}               => {stalk.surface.below.ring=s} 0.2806499  0.5780933 0.4854751 0.9514648  2280
[8199] {gill.size=b,                                                                                              
        population=v}               => {stalk.surface.above.ring=s} 0.1378631  0.6086957 0.2264894 0.9553793  1120
[8200] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {gill.spacing=c}             0.2747415  0.9300000 0.2954210 1.1091192  2232
[8201] {gill.spacing=c,                                                                                           
        population=v}               => {stalk.surface.above.ring=s} 0.2747415  0.5800416 0.4736583 0.9104053  2232
[8202] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {population=v}               0.2747415  0.5045208 0.5445593 1.0145364  2232
[8203] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {ring.number=o}              0.2845889  0.9633333 0.2954210 1.0451549  2312
[8204] {ring.number=o,                                                                                            
        population=v}               => {stalk.surface.above.ring=s} 0.2845889  0.5850202 0.4864599 0.9182196  2312
[8205] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {gill.attachment=f}          0.2836041  0.9600000 0.2954210 0.9854738  2304
[8206] {gill.attachment=f,                                                                                        
        population=v}               => {stalk.surface.above.ring=s} 0.2836041  0.5841785 0.4854751 0.9168984  2304
[8207] {stalk.surface.above.ring=s,                                                                               
        population=v}               => {veil.color=w}               0.2836041  0.9600000 0.2954210 0.9842302  2304
[8208] {veil.color=w,                                                                                             
        population=v}               => {stalk.surface.above.ring=s} 0.2836041  0.5841785 0.4854751 0.9168984  2304
[8209] {gill.size=b,                                                                                              
        population=v}               => {gill.spacing=c}             0.2264894  1.0000000 0.2264894 1.1926013  1840
[8210] {gill.size=b,                                                                                              
        population=v}               => {ring.number=o}              0.2156573  0.9521739 0.2264894 1.0330477  1752
[8211] {gill.size=b,                                                                                              
        population=v}               => {gill.attachment=f}          0.2146726  0.9478261 0.2264894 0.9729769  1744
[8212] {gill.size=b,                                                                                              
        population=v}               => {veil.color=w}               0.2146726  0.9478261 0.2264894 0.9717490  1744
[8213] {gill.spacing=c,                                                                                           
        population=v}               => {ring.number=o}              0.4628262  0.9771310 0.4736583 1.0601245  3760
[8214] {ring.number=o,                                                                                            
        population=v}               => {gill.spacing=c}             0.4628262  0.9514170 0.4864599 1.1346611  3760
[8215] {gill.spacing=c,                                                                                           
        ring.number=o}              => {population=v}               0.4628262  0.5816832 0.7956672 1.1697015  3760
[8216] {gill.spacing=c,                                                                                           
        population=v}               => {gill.attachment=f}          0.4618415  0.9750520 0.4736583 1.0009252  3752
[8217] {gill.attachment=f,                                                                                        
        population=v}               => {gill.spacing=c}             0.4618415  0.9513185 0.4854751 1.1345436  3752
[8218] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {population=v}               0.4618415  0.5683126 0.8126539 1.1428148  3752
[8219] {gill.spacing=c,                                                                                           
        population=v}               => {veil.color=w}               0.4618415  0.9750520 0.4736583 0.9996621  3752
[8220] {veil.color=w,                                                                                             
        population=v}               => {gill.spacing=c}             0.4618415  0.9513185 0.4854751 1.1345436  3752
[8221] {gill.spacing=c,                                                                                           
        veil.color=w}               => {population=v}               0.4618415  0.5667674 0.8148695 1.1397075  3752
[8222] {ring.number=o,                                                                                            
        population=v}               => {gill.attachment=f}          0.4746430  0.9757085 0.4864599 1.0015992  3856
[8223] {gill.attachment=f,                                                                                        
        population=v}               => {ring.number=o}              0.4746430  0.9776876 0.4854751 1.0607284  3856
[8224] {gill.attachment=f,                                                                                        
        ring.number=o}              => {population=v}               0.4746430  0.5285088 0.8980798 1.0627736  3856
[8225] {ring.number=o,                                                                                            
        population=v}               => {veil.color=w}               0.4746430  0.9757085 0.4864599 1.0003352  3856
[8226] {veil.color=w,                                                                                             
        population=v}               => {ring.number=o}              0.4746430  0.9776876 0.4854751 1.0607284  3856
[8227] {veil.color=w,                                                                                             
        ring.number=o}              => {population=v}               0.4746430  0.5290889 0.8970950 1.0639402  3856
[8228] {gill.attachment=f,                                                                                        
        population=v}               => {veil.color=w}               0.4854751  1.0000000 0.4854751 1.0252398  3944
[8229] {veil.color=w,                                                                                             
        population=v}               => {gill.attachment=f}          0.4854751  1.0000000 0.4854751 1.0265353  3944
[8230] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2796652  0.8402367 0.3328410 1.5291404  2272
[8231] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2796652  0.8255814 0.3387494 1.5298867  2272
[8232] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {class=e}                    0.2796652  0.6454545 0.4332841 1.2461199  2272
[8233] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.1772526  0.5325444 0.3328410 0.9388868  1440
[8234] {class=e,                                                                                                  
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.1772526  0.5555556 0.3190547 1.0295012  1440
[8235] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {class=e}                    0.1772526  0.5555556 0.3190547 1.0725602  1440
[8236] {class=e,                                                                                                  
        bruises=f}                  => {stalk.color.below.ring=w}   0.1477105  0.8241758 0.1792221 1.5272820  1200
[8237] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {class=e}                    0.1477105  0.5319149 0.2776957 1.0269193  1200
[8238] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2383063  0.7159763 0.3328410 1.1784019  1936
[8239] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.2383063  0.5694118 0.4185130 1.0551782  1936
[8240] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {class=e}                    0.2383063  0.6368421 0.3741999 1.2294927  1936
[8241] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.2678484  0.8047337 0.3328410 1.2630713  2176
[8242] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.2678484  0.5978022 0.4480551 1.1077886  2176
[8243] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {class=e}                    0.2678484  0.6634146 0.4037420 1.2807938  2176
[8244] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {gill.size=b}                0.3032989  0.9112426 0.3328410 1.3191260  2464
[8245] {class=e,                                                                                                  
        gill.size=b}                => {stalk.color.below.ring=w}   0.3032989  0.6285714 0.4825209 1.1648071  2464
[8246] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {class=e}                    0.3032989  0.8725212 0.3476120 1.6844968  2464
[8247] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.1910389  0.5739645 0.3328410 0.6845108  1552
[8248] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.color.below.ring=w}   0.1910389  0.5159574 0.3702610 0.9561219  1552
[8249] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {ring.number=o}              0.2816347  0.8461538 0.3328410 0.9180227  2288
[8250] {class=e,                                                                                                  
        ring.number=o}              => {stalk.color.below.ring=w}   0.2816347  0.6217391 0.4529788 1.1521461  2288
[8251] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {class=e}                    0.2816347  0.5872690 0.4795667 1.1337864  2288
[8252] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.3328410  1.0000000 0.3328410 1.0265353  2704
[8253] {class=e,                                                                                                  
        gill.attachment=f}          => {stalk.color.below.ring=w}   0.3328410  0.6733068 0.4943378 1.2477063  2704
[8254] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {class=e}                    0.3328410  0.6167883 0.5396356 1.1907767  2704
[8255] {class=e,                                                                                                  
        stalk.color.below.ring=w}   => {veil.color=w}               0.3328410  1.0000000 0.3328410 1.0252398  2704
[8256] {class=e,                                                                                                  
        veil.color=w}               => {stalk.color.below.ring=w}   0.3328410  0.6733068 0.4943378 1.2477063  2704
[8257] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {class=e}                    0.3328410  0.6167883 0.5396356 1.1907767  2704
[8258] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.1772526  0.5232558 0.3387494 0.9225109  1440
[8259] {class=e,                                                                                                  
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.1772526  0.5555556 0.3190547 1.0110514  1440
[8260] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {class=e}                    0.1772526  0.5555556 0.3190547 1.0725602  1440
[8261] {class=e,                                                                                                  
        bruises=f}                  => {stalk.color.above.ring=w}   0.1536189  0.8571429 0.1792221 1.5599078  1248
[8262] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {class=e}                    0.1536189  0.5342466 0.2875431 1.0314209  1248
[8263] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.2412605  0.7122093 0.3387494 1.1722019  1960
[8264] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.2412605  0.5764706 0.4185130 1.0491145  1960
[8265] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {class=e}                    0.2412605  0.6396867 0.3771541 1.2349845  1960
[8266] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.2708026  0.7994186 0.3387494 1.2547289  2200
[8267] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.2708026  0.6043956 0.4480551 1.0999350  2200
[8268] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {class=e}                    0.2708026  0.6658596 0.4066962 1.2855140  2200
[8269] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {gill.size=b}                0.3032989  0.8953488 0.3387494 1.2961180  2464
[8270] {class=e,                                                                                                  
        gill.size=b}                => {stalk.color.above.ring=w}   0.3032989  0.6285714 0.4825209 1.1439324  2464
[8271] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {class=e}                    0.3032989  0.8725212 0.3476120 1.6844968  2464
[8272] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.1910389  0.5639535 0.3387494 0.6725717  1552
[8273] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.color.above.ring=w}   0.1910389  0.5159574 0.3702610 0.9389871  1552
[8274] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {ring.number=o}              0.2875431  0.8488372 0.3387494 0.9209340  2336
[8275] {class=e,                                                                                                  
        ring.number=o}              => {stalk.color.above.ring=w}   0.2875431  0.6347826 0.4529788 1.1552361  2336
[8276] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {class=e}                    0.2875431  0.5875252 0.4894141 1.1342810  2336
[8277] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.3387494  1.0000000 0.3387494 1.0265353  2752
[8278] {class=e,                                                                                                  
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.3387494  0.6852590 0.4943378 1.2470976  2752
[8279] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {class=e}                    0.3387494  0.6164875 0.5494830 1.1901958  2752
[8280] {class=e,                                                                                                  
        stalk.color.above.ring=w}   => {veil.color=w}               0.3387494  1.0000000 0.3387494 1.0252398  2752
[8281] {class=e,                                                                                                  
        veil.color=w}               => {stalk.color.above.ring=w}   0.3387494  0.6852590 0.4943378 1.2470976  2752
[8282] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {class=e}                    0.3387494  0.6164875 0.5494830 1.1901958  2752
[8283] {class=e,                                                                                                  
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.2717873  0.8518519 0.3190547 1.4020349  2208
[8284] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.2717873  0.6494118 0.4185130 1.1449265  2208
[8285] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {class=e}                    0.2717873  0.6865672 0.3958641 1.3254923  2208
[8286] {class=e,                                                                                                  
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.2717873  0.8518519 0.3190547 1.3370256  2208
[8287] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.2717873  0.6065934 0.4480551 1.0694368  2208
[8288] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {class=e}                    0.2717873  0.6865672 0.3958641 1.3254923  2208
[8289] {class=e,                                                                                                  
        stalk.shape=t}              => {gill.size=b}                0.3072378  0.9629630 0.3190547 1.3939970  2496
[8290] {class=e,                                                                                                  
        gill.size=b}                => {stalk.shape=t}              0.3072378  0.6367347 0.4825209 1.1225765  2496
[8291] {gill.size=b,                                                                                              
        stalk.shape=t}              => {class=e}                    0.3072378  0.8965517 0.3426883 1.7308903  2496
[8292] {class=e,                                                                                                  
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  0.6666667 0.3190547 0.7950675  1728
[8293] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.shape=t}              0.2127031  0.5744681 0.3702610 1.0127992  1728
[8294] {class=e,                                                                                                  
        stalk.shape=t}              => {ring.number=o}              0.3190547  1.0000000 0.3190547 1.0849359  2592
[8295] {class=e,                                                                                                  
        ring.number=o}              => {stalk.shape=t}              0.3190547  0.7043478 0.4529788 1.2417799  2592
[8296] {stalk.shape=t,                                                                                            
        ring.number=o}              => {class=e}                    0.3190547  0.5625000 0.5672083 1.0859672  2592
[8297] {class=e,                                                                                                  
        stalk.shape=t}              => {gill.attachment=f}          0.3190547  1.0000000 0.3190547 1.0265353  2592
[8298] {class=e,                                                                                                  
        gill.attachment=f}          => {stalk.shape=t}              0.3190547  0.6454183 0.4943378 1.1378860  2592
[8299] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {class=e}                    0.3190547  0.5625000 0.5672083 1.0859672  2592
[8300] {class=e,                                                                                                  
        stalk.shape=t}              => {veil.color=w}               0.3190547  1.0000000 0.3190547 1.0252398  2592
[8301] {class=e,                                                                                                  
        veil.color=w}               => {stalk.shape=t}              0.3190547  0.6454183 0.4943378 1.1378860  2592
[8302] {stalk.shape=t,                                                                                            
        veil.color=w}               => {class=e}                    0.3190547  0.5625000 0.5672083 1.0859672  2592
[8303] {class=e,                                                                                                  
        bruises=f}                  => {stalk.surface.below.ring=s} 0.1033973  0.5769231 0.1792221 0.9495387   840
[8304] {class=e,                                                                                                  
        bruises=f}                  => {stalk.surface.above.ring=s} 0.1093058  0.6098901 0.1792221 0.9572541   888
[8305] {class=e,                                                                                                  
        bruises=f}                  => {gill.size=b}                0.1555884  0.8681319 0.1792221 1.2567183  1264
[8306] {class=e,                                                                                                  
        bruises=f}                  => {ring.number=o}              0.1418021  0.7912088 0.1792221 0.8584108  1152
[8307] {class=e,                                                                                                  
        bruises=f}                  => {gill.attachment=f}          0.1555884  0.8681319 0.1792221 0.8911680  1264
[8308] {class=e,                                                                                                  
        bruises=f}                  => {veil.color=w}               0.1555884  0.8681319 0.1792221 0.8900433  1264
[8309] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.3845396  0.9188235 0.4185130 1.4421411  3124
[8310] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.3845396  0.8582418 0.4480551 1.4125519  3124
[8311] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {class=e}                    0.3845396  0.7516843 0.5115707 1.4512080  3124
[8312] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {gill.size=b}                0.3919252  0.9364706 0.4185130 1.3556463  3184
[8313] {class=e,                                                                                                  
        gill.size=b}                => {stalk.surface.below.ring=s} 0.3919252  0.8122449 0.4825209 1.3368472  3184
[8314] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {class=e}                    0.3919252  0.9364706 0.4185130 1.8079580  3184
[8315] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.3387494  0.8094118 0.4185130 0.9653055  2752
[8316] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.3387494  0.9148936 0.3702610 1.5057933  2752
[8317] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {class=e}                    0.3387494  0.6577438 0.5150172 1.2698457  2752
[8318] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {ring.number=o}              0.3732152  0.8917647 0.4185130 0.9675075  3032
[8319] {class=e,                                                                                                  
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3732152  0.8239130 0.4529788 1.3560514  3032
[8320] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {class=e}                    0.3732152  0.6743772 0.5534220 1.3019583  3032
[8321] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.3948794  0.9435294 0.4185130 0.9685662  3208
[8322] {class=e,                                                                                                  
        gill.attachment=f}          => {stalk.surface.below.ring=s} 0.3948794  0.7988048 0.4943378 1.3147265  3208
[8323] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {class=e}                    0.3948794  0.6762226 0.5839488 1.3055210  3208
[8324] {class=e,                                                                                                  
        stalk.surface.below.ring=s} => {veil.color=w}               0.3948794  0.9435294 0.4185130 0.9673439  3208
[8325] {class=e,                                                                                                  
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3948794  0.7988048 0.4943378 1.3147265  3208
[8326] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {class=e}                    0.3948794  0.6762226 0.5839488 1.3055210  3208
[8327] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {gill.size=b}                0.4155588  0.9274725 0.4480551 1.3426206  3376
[8328] {class=e,                                                                                                  
        gill.size=b}                => {stalk.surface.above.ring=s} 0.4155588  0.8612245 0.4825209 1.3517364  3376
[8329] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {class=e}                    0.4155588  0.9398664 0.4421467 1.8145139  3376
[8330] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.3682915  0.8219780 0.4480551 0.9802921  2992
[8331] {class=e,                                                                                                  
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.3682915  0.9946809 0.3702610 1.5612031  2992
[8332] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {class=e}                    0.3682915  0.6763110 0.5445593 1.3056917  2992
[8333] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {ring.number=o}              0.4027573  0.8989011 0.4480551 0.9752501  3272
[8334] {class=e,                                                                                                  
        ring.number=o}              => {stalk.surface.above.ring=s} 0.4027573  0.8891304 0.4529788 1.3955363  3272
[8335] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {class=e}                    0.4027573  0.6908784 0.5829641 1.3338156  3272
[8336] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.4244215  0.9472527 0.4480551 0.9723883  3448
[8337] {class=e,                                                                                                  
        gill.attachment=f}          => {stalk.surface.above.ring=s} 0.4244215  0.8585657 0.4943378 1.3475634  3448
[8338] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {class=e}                    0.4244215  0.6918138 0.6134909 1.3356215  3448
[8339] {class=e,                                                                                                  
        stalk.surface.above.ring=s} => {veil.color=w}               0.4244215  0.9472527 0.4480551 0.9711612  3448
[8340] {class=e,                                                                                                  
        veil.color=w}               => {stalk.surface.above.ring=s} 0.4244215  0.8585657 0.4943378 1.3475634  3448
[8341] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {class=e}                    0.4244215  0.6918138 0.6134909 1.3356215  3448
[8342] {class=e,                                                                                                  
        gill.size=b}                => {gill.spacing=c}             0.3525357  0.7306122 0.4825209 0.8713291  2864
[8343] {class=e,                                                                                                  
        gill.spacing=c}             => {gill.size=b}                0.3525357  0.9521277 0.3702610 1.3783117  2864
[8344] {gill.spacing=c,                                                                                           
        gill.size=b}                => {class=e}                    0.3525357  0.6286216 0.5608075 1.2136221  2864
[8345] {class=e,                                                                                                  
        gill.size=b}                => {ring.number=o}              0.4175283  0.8653061 0.4825209 0.9388017  3392
[8346] {class=e,                                                                                                  
        ring.number=o}              => {gill.size=b}                0.4175283  0.9217391 0.4529788 1.3343209  3392
[8347] {gill.size=b,                                                                                              
        ring.number=o}              => {class=e}                    0.4175283  0.6816720 0.6125062 1.3160417  3392
[8348] {class=e,                                                                                                  
        gill.size=b}                => {gill.attachment=f}          0.4588872  0.9510204 0.4825209 0.9762560  3728
[8349] {class=e,                                                                                                  
        gill.attachment=f}          => {gill.size=b}                0.4588872  0.9282869 0.4943378 1.3437994  3728
[8350] {gill.attachment=f,                                                                                        
        gill.size=b}                => {class=e}                    0.4588872  0.6901148 0.6649434 1.3323414  3728
[8351] {class=e,                                                                                                  
        gill.size=b}                => {veil.color=w}               0.4588872  0.9510204 0.4825209 0.9750240  3728
[8352] {class=e,                                                                                                  
        veil.color=w}               => {gill.size=b}                0.4588872  0.9282869 0.4943378 1.3437994  3728
[8353] {gill.size=b,                                                                                              
        veil.color=w}               => {class=e}                    0.4588872  0.6878229 0.6671590 1.3279166  3728
[8354] {class=e,                                                                                                  
        gill.spacing=c}             => {ring.number=o}              0.3407189  0.9202128 0.3702610 0.9983719  2768
[8355] {class=e,                                                                                                  
        ring.number=o}              => {gill.spacing=c}             0.3407189  0.7521739 0.4529788 0.8970436  2768
[8356] {class=e,                                                                                                  
        gill.spacing=c}             => {gill.attachment=f}          0.3466273  0.9361702 0.3702610 0.9610117  2816
[8357] {class=e,                                                                                                  
        gill.attachment=f}          => {gill.spacing=c}             0.3466273  0.7011952 0.4943378 0.8362463  2816
[8358] {class=e,                                                                                                  
        gill.spacing=c}             => {veil.color=w}               0.3466273  0.9361702 0.3702610 0.9597989  2816
[8359] {class=e,                                                                                                  
        veil.color=w}               => {gill.spacing=c}             0.3466273  0.7011952 0.4943378 0.8362463  2816
[8360] {class=e,                                                                                                  
        ring.number=o}              => {gill.attachment=f}          0.4293452  0.9478261 0.4529788 0.9729769  3488
[8361] {class=e,                                                                                                  
        gill.attachment=f}          => {ring.number=o}              0.4293452  0.8685259 0.4943378 0.9422949  3488
[8362] {class=e,                                                                                                  
        ring.number=o}              => {veil.color=w}               0.4293452  0.9478261 0.4529788 0.9717490  3488
[8363] {class=e,                                                                                                  
        veil.color=w}               => {ring.number=o}              0.4293452  0.8685259 0.4943378 0.9422949  3488
[8364] {class=e,                                                                                                  
        gill.attachment=f}          => {veil.color=w}               0.4943378  1.0000000 0.4943378 1.0252398  4016
[8365] {class=e,                                                                                                  
        veil.color=w}               => {gill.attachment=f}          0.4943378  1.0000000 0.4943378 1.0265353  4016
[8366] {gill.attachment=f,                                                                                        
        veil.color=w}               => {class=e}                    0.4943378  0.5079686 0.9731659 0.9806885  4016
[8367] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.2186115  0.5045455 0.4332841 0.8895241  1776
[8368] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2186115  0.6851852 0.3190547 1.2469634  1776
[8369] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2186115  0.6851852 0.3190547 1.2697182  1776
[8370] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {bruises=f}                  0.2245199  0.5181818 0.4332841 0.8866279  1824
[8371] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2245199  0.8085106 0.2776957 1.4714024  1824
[8372] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2245199  0.7808219 0.2875431 1.4469428  1824
[8373] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2944362  0.6795455 0.4332841 1.1184415  2392
[8374] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2944362  0.7868421 0.3741999 1.4319680  2392
[8375] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2944362  0.7806789 0.3771541 1.4466777  2392
[8376] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.3239783  0.7477273 0.4332841 1.1735967  2632
[8377] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.3239783  0.8024390 0.4037420 1.4603527  2632
[8378] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.3239783  0.7966102 0.4066962 1.4762000  2632
[8379] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {gill.size=b}                0.2944362  0.6795455 0.4332841 0.9837183  2392
[8380] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2944362  0.8470255 0.3476120 1.5414953  2392
[8381] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2944362  0.8470255 0.3476120 1.5696248  2392
[8382] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.2786805  0.6431818 0.4332841 0.7670595  2264
[8383] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.2786805  0.7237852 0.3850320 1.3172112  2264
[8384] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.2786805  0.7164557 0.3889710 1.3276656  2264
[8385] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {ring.number=o}              0.3791236  0.8750000 0.4332841 0.9493189  3080
[8386] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {stalk.color.above.ring=w}   0.3791236  0.7905544 0.4795667 1.4387240  3080
[8387] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {stalk.color.below.ring=w}   0.3791236  0.7746479 0.4894141 1.4355017  3080
[8388] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.4332841  1.0000000 0.4332841 1.0265353  3520
[8389] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {stalk.color.above.ring=w}   0.4332841  0.8029197 0.5396356 1.4612275  3520
[8390] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {stalk.color.below.ring=w}   0.4332841  0.7885305 0.5494830 1.4612275  3520
[8391] {stalk.color.above.ring=w,                                                                                 
        stalk.color.below.ring=w}   => {veil.color=w}               0.4332841  1.0000000 0.4332841 1.0252398  3520
[8392] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {stalk.color.above.ring=w}   0.4332841  0.8029197 0.5396356 1.4612275  3520
[8393] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {stalk.color.below.ring=w}   0.4332841  0.7885305 0.5494830 1.4612275  3520
[8394] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {bruises=f}                  0.2008863  0.6296296 0.3190547 1.0773191  1632
[8395] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.2008863  0.7234043 0.2776957 1.2753768  1632
[8396] {bruises=f,                                                                                                
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.2008863  0.6538462 0.3072378 1.2116437  1632
[8397] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2008863  0.6296296 0.3190547 1.0362867  1632
[8398] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.2008863  0.5368421 0.3741999 0.9464638  1632
[8399] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.2008863  0.5074627 0.3958641 0.9403802  1632
[8400] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.2008863  0.6296296 0.3190547 0.9882363  1632
[8401] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.2008863  0.5074627 0.3958641 0.9403802  1632
[8402] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {gill.size=b}                0.2008863  0.6296296 0.3190547 0.9114596  1632
[8403] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.2008863  0.5779037 0.3476120 1.0188562  1632
[8404] {gill.size=b,                                                                                              
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.2008863  0.5862069 0.3426883 1.0863013  1632
[8405] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.2127031  0.6666667 0.3190547 0.7950675  1728
[8406] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.2127031  0.5524297 0.3850320 0.9739450  1728
[8407] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {ring.number=o}              0.3190547  1.0000000 0.3190547 1.0849359  2592
[8408] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {stalk.shape=t}              0.3190547  0.6652977 0.4795667 1.1729338  2592
[8409] {stalk.shape=t,                                                                                            
        ring.number=o}              => {stalk.color.below.ring=w}   0.3190547  0.5625000 0.5672083 1.0423700  2592
[8410] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.3190547  1.0000000 0.3190547 1.0265353  2592
[8411] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {stalk.shape=t}              0.3190547  0.5912409 0.5396356 1.0423700  2592
[8412] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {stalk.color.below.ring=w}   0.3190547  0.5625000 0.5672083 1.0423700  2592
[8413] {stalk.shape=t,                                                                                            
        stalk.color.below.ring=w}   => {veil.color=w}               0.3190547  1.0000000 0.3190547 1.0252398  2592
[8414] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {stalk.shape=t}              0.3190547  0.5912409 0.5396356 1.0423700  2592
[8415] {stalk.shape=t,                                                                                            
        veil.color=w}               => {stalk.color.below.ring=w}   0.3190547  0.5625000 0.5672083 1.0423700  2592
[8416] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.1536189  0.5531915 0.2776957 0.9104797  1248
[8417] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.1536189  0.6582278 0.2333826 1.2197635  1248
[8418] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.1595273  0.5744681 0.2776957 0.9016574  1296
[8419] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.1595273  0.6666667 0.2392910 1.2354015  1296
[8420] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {ring.number=o}              0.2422452  0.8723404 0.2776957 0.9464334  1968
[8421] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {bruises=f}                  0.2422452  0.5051335 0.4795667 0.8643017  1968
[8422] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.2776957  1.0000000 0.2776957 1.0265353  2256
[8423] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {bruises=f}                  0.2776957  0.5145985 0.5396356 0.8804967  2256
[8424] {bruises=f,                                                                                                
        stalk.color.below.ring=w}   => {veil.color=w}               0.2776957  1.0000000 0.2776957 1.0252398  2256
[8425] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {bruises=f}                  0.2776957  0.5145985 0.5396356 0.8804967  2256
[8426] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.3062531  0.8184211 0.3741999 1.2845542  2488
[8427] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.3062531  0.7585366 0.4037420 1.2484504  2488
[8428] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.3062531  0.5986526 0.5115707 1.1093644  2488
[8429] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.size=b}                0.2412605  0.6447368 0.3741999 0.9333290  1960
[8430] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2412605  0.6940510 0.3476120 1.1423157  1960
[8431] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.2412605  0.5764706 0.4185130 1.0682589  1960
[8432] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.2845889  0.7605263 0.3741999 0.9070047  2312
[8433] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.2845889  0.7391304 0.3850320 1.2165105  2312
[8434] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.2845889  0.5525813 0.5150172 1.0239895  2312
[8435] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {ring.number=o}              0.3318562  0.8868421 0.3741999 0.9621668  2696
[8436] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3318562  0.6919918 0.4795667 1.1389265  2696
[8437] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {stalk.color.below.ring=w}   0.3318562  0.5996441 0.5534220 1.1112018  2696
[8438] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.3741999  1.0000000 0.3741999 1.0265353  3040
[8439] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {stalk.surface.below.ring=s} 0.3741999  0.6934307 0.5396356 1.1412947  3040
[8440] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {stalk.color.below.ring=w}   0.3741999  0.6408094 0.5839488 1.1874854  3040
[8441] {stalk.surface.below.ring=s,                                                                               
        stalk.color.below.ring=w}   => {veil.color=w}               0.3741999  1.0000000 0.3741999 1.0252398  3040
[8442] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3741999  0.6934307 0.5396356 1.1412947  3040
[8443] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {stalk.color.below.ring=w}   0.3741999  0.6408094 0.5839488 1.1874854  3040
[8444] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.size=b}                0.2648941  0.6560976 0.4037420 0.9497749  2152
[8445] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.2648941  0.7620397 0.3476120 1.1960607  2152
[8446] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.2648941  0.5991091 0.4421467 1.1102104  2152
[8447] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.3141310  0.7780488 0.4037420 0.9279020  2552
[8448] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.3141310  0.8158568 0.3850320 1.2805295  2552
[8449] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.3141310  0.5768535 0.5445593 1.0689685  2552
[8450] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {ring.number=o}              0.3613983  0.8951220 0.4037420 0.9711499  2936
[8451] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3613983  0.7535934 0.4795667 1.1828039  2936
[8452] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {stalk.color.below.ring=w}   0.3613983  0.6199324 0.5829641 1.1487981  2936
[8453] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.4037420  1.0000000 0.4037420 1.0265353  3280
[8454] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {stalk.surface.above.ring=s} 0.4037420  0.7481752 0.5396356 1.1742997  3280
[8455] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {stalk.color.below.ring=w}   0.4037420  0.6581059 0.6134909 1.2195376  3280
[8456] {stalk.surface.above.ring=s,                                                                               
        stalk.color.below.ring=w}   => {veil.color=w}               0.4037420  1.0000000 0.4037420 1.0252398  3280
[8457] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {stalk.surface.above.ring=s} 0.4037420  0.7481752 0.5396356 1.1742997  3280
[8458] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {stalk.color.below.ring=w}   0.4037420  0.6581059 0.6134909 1.2195376  3280
[8459] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.2176268  0.6260623 0.3476120 0.7466427  1768
[8460] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {gill.size=b}                0.2176268  0.5652174 0.3850320 0.8182156  1768
[8461] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {ring.number=o}              0.2875431  0.8271955 0.3476120 0.8974541  2336
[8462] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {gill.size=b}                0.2875431  0.5995893 0.4795667 0.8679729  2336
[8463] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.3476120  1.0000000 0.3476120 1.0265353  2824
[8464] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {gill.size=b}                0.3476120  0.6441606 0.5396356 0.9324948  2824
[8465] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.color.below.ring=w}   0.3476120  0.5227693 0.6649434 0.9687450  2824
[8466] {gill.size=b,                                                                                              
        stalk.color.below.ring=w}   => {veil.color=w}               0.3476120  1.0000000 0.3476120 1.0252398  2824
[8467] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {gill.size=b}                0.3476120  0.6441606 0.5396356 0.9324948  2824
[8468] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.color.below.ring=w}   0.3476120  0.5210332 0.6671590 0.9655278  2824
[8469] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {ring.number=o}              0.3604136  0.9360614 0.3850320 1.0155666  2928
[8470] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {gill.spacing=c}             0.3604136  0.7515400 0.4795667 0.8962876  2928
[8471] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {gill.attachment=f}          0.3850320  1.0000000 0.3850320 1.0265353  3128
[8472] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {gill.spacing=c}             0.3850320  0.7135036 0.5396356 0.8509254  3128
[8473] {gill.spacing=c,                                                                                           
        stalk.color.below.ring=w}   => {veil.color=w}               0.3850320  1.0000000 0.3850320 1.0252398  3128
[8474] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {gill.spacing=c}             0.3850320  0.7135036 0.5396356 0.8509254  3128
[8475] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {gill.attachment=f}          0.4795667  1.0000000 0.4795667 1.0265353  3896
[8476] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {ring.number=o}              0.4795667  0.8886861 0.5396356 0.9641675  3896
[8477] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.color.below.ring=w}   0.4795667  0.5339912 0.8980798 0.9895403  3896
[8478] {stalk.color.below.ring=w,                                                                                 
        ring.number=o}              => {veil.color=w}               0.4795667  1.0000000 0.4795667 1.0252398  3896
[8479] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {ring.number=o}              0.4795667  0.8886861 0.5396356 0.9641675  3896
[8480] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.color.below.ring=w}   0.4795667  0.5345774 0.8970950 0.9906265  3896
[8481] {gill.attachment=f,                                                                                        
        stalk.color.below.ring=w}   => {veil.color=w}               0.5396356  1.0000000 0.5396356 1.0252398  4384
[8482] {stalk.color.below.ring=w,                                                                                 
        veil.color=w}               => {gill.attachment=f}          0.5396356  1.0000000 0.5396356 1.0265353  4384
[8483] {gill.attachment=f,                                                                                        
        veil.color=w}               => {stalk.color.below.ring=w}   0.5396356  0.5545156 0.9731659 1.0275740  4384
[8484] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {bruises=f}                  0.2008863  0.6296296 0.3190547 1.0773191  1632
[8485] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.2008863  0.6986301 0.2875431 1.2316995  1632
[8486] {bruises=f,                                                                                                
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.2008863  0.6538462 0.3072378 1.1899297  1632
[8487] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.2008863  0.6296296 0.3190547 1.0362867  1632
[8488] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.2008863  0.5326371 0.3771541 0.9390503  1632
[8489] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.2008863  0.5074627 0.3958641 0.9235275  1632
[8490] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.2008863  0.6296296 0.3190547 0.9882363  1632
[8491] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.2008863  0.5074627 0.3958641 0.9235275  1632
[8492] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {gill.size=b}                0.2008863  0.6296296 0.3190547 0.9114596  1632
[8493] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.2008863  0.5779037 0.3476120 1.0188562  1632
[8494] {gill.size=b,                                                                                              
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.2008863  0.5862069 0.3426883 1.0668335  1632
[8495] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.2127031  0.6666667 0.3190547 0.7950675  1728
[8496] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.2127031  0.5468354 0.3889710 0.9640823  1728
[8497] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {ring.number=o}              0.3190547  1.0000000 0.3190547 1.0849359  2592
[8498] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {stalk.shape=t}              0.3190547  0.6519115 0.4894141 1.1493335  2592
[8499] {stalk.shape=t,                                                                                            
        ring.number=o}              => {stalk.color.above.ring=w}   0.3190547  0.5625000 0.5672083 1.0236895  2592
[8500] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.3190547  1.0000000 0.3190547 1.0265353  2592
[8501] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {stalk.shape=t}              0.3190547  0.5806452 0.5494830 1.0236895  2592
[8502] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {stalk.color.above.ring=w}   0.3190547  0.5625000 0.5672083 1.0236895  2592
[8503] {stalk.shape=t,                                                                                            
        stalk.color.above.ring=w}   => {veil.color=w}               0.3190547  1.0000000 0.3190547 1.0252398  2592
[8504] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {stalk.shape=t}              0.3190547  0.5806452 0.5494830 1.0236895  2592
[8505] {stalk.shape=t,                                                                                            
        veil.color=w}               => {stalk.color.above.ring=w}   0.3190547  0.5625000 0.5672083 1.0236895  2592
[8506] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.1565731  0.5445205 0.2875431 0.8962085  1272
[8507] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.1565731  0.6708861 0.2333826 1.2209405  1272
[8508] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.1624815  0.5650685 0.2875431 0.8869043  1320
[8509] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.1624815  0.6790123 0.2392910 1.2357295  1320
[8510] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {ring.number=o}              0.2520926  0.8767123 0.2875431 0.9511767  2048
[8511] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {bruises=f}                  0.2520926  0.5150905 0.4894141 0.8813386  2048
[8512] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.2875431  1.0000000 0.2875431 1.0265353  2336
[8513] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {bruises=f}                  0.2875431  0.5232975 0.5494830 0.8953810  2336
[8514] {bruises=f,                                                                                                
        gill.attachment=f}          => {stalk.color.above.ring=w}   0.2875431  0.5147642 0.5585918 0.9368155  2336
[8515] {bruises=f,                                                                                                
        stalk.color.above.ring=w}   => {veil.color=w}               0.2875431  1.0000000 0.2875431 1.0252398  2336
[8516] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {bruises=f}                  0.2875431  0.5232975 0.5494830 0.8953810  2336
[8517] {bruises=f,                                                                                                
        veil.color=w}               => {stalk.color.above.ring=w}   0.2875431  0.5136324 0.5598227 0.9347557  2336
[8518] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.3077302  0.8159269 0.3771541 1.2806395  2500
[8519] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.3077302  0.7566586 0.4066962 1.2453595  2500
[8520] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.3077302  0.6015399 0.5115707 1.0947380  2500
[8521] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.size=b}                0.2412605  0.6396867 0.3771541 0.9260183  1960
[8522] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.2412605  0.6940510 0.3476120 1.1423157  1960
[8523] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.2412605  0.5764706 0.4185130 1.0491145  1960
[8524] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.2845889  0.7545692 0.3771541 0.8999002  2312
[8525] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.2845889  0.7316456 0.3889710 1.2041914  2312
[8526] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.2845889  0.5525813 0.5150172 1.0056385  2312
[8527] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {ring.number=o}              0.3348104  0.8877285 0.3771541 0.9631285  2720
[8528] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3348104  0.6841046 0.4894141 1.1259453  2720
[8529] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {stalk.color.above.ring=w}   0.3348104  0.6049822 0.5534220 1.1010026  2720
[8530] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.3771541  1.0000000 0.3771541 1.0265353  3064
[8531] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {stalk.surface.below.ring=s} 0.3771541  0.6863799 0.5494830 1.1296901  3064
[8532] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {stalk.color.above.ring=w}   0.3771541  0.6458685 0.5839488 1.1754112  3064
[8533] {stalk.surface.below.ring=s,                                                                               
        stalk.color.above.ring=w}   => {veil.color=w}               0.3771541  1.0000000 0.3771541 1.0252398  3064
[8534] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3771541  0.6863799 0.5494830 1.1296901  3064
[8535] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {stalk.color.above.ring=w}   0.3771541  0.6458685 0.5839488 1.1754112  3064
[8536] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.size=b}                0.2648941  0.6513317 0.4066962 0.9428758  2152
[8537] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.2648941  0.7620397 0.3476120 1.1960607  2152
[8538] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.2648941  0.5991091 0.4421467 1.0903142  2152
[8539] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.3141310  0.7723971 0.4066962 0.9211618  2552
[8540] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.3141310  0.8075949 0.3889710 1.2675621  2552
[8541] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.3141310  0.5768535 0.5445593 1.0498114  2552
[8542] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {ring.number=o}              0.3643525  0.8958838 0.4066962 0.9719765  2960
[8543] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3643525  0.7444668 0.4894141 1.1684792  2960
[8544] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {stalk.color.above.ring=w}   0.3643525  0.6250000 0.5829641 1.1374328  2960
[8545] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.4066962  1.0000000 0.4066962 1.0265353  3304
[8546] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {stalk.surface.above.ring=s} 0.4066962  0.7401434 0.5494830 1.1616933  3304
[8547] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {stalk.color.above.ring=w}   0.4066962  0.6629213 0.6134909 1.2064456  3304
[8548] {stalk.surface.above.ring=s,                                                                               
        stalk.color.above.ring=w}   => {veil.color=w}               0.4066962  1.0000000 0.4066962 1.0252398  3304
[8549] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {stalk.surface.above.ring=s} 0.4066962  0.7401434 0.5494830 1.1616933  3304
[8550] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {stalk.color.above.ring=w}   0.4066962  0.6629213 0.6134909 1.2064456  3304
[8551] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.2176268  0.6260623 0.3476120 0.7466427  1768
[8552] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {gill.size=b}                0.2176268  0.5594937 0.3889710 0.8099299  1768
[8553] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {ring.number=o}              0.2875431  0.8271955 0.3476120 0.8974541  2336
[8554] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {gill.size=b}                0.2875431  0.5875252 0.4894141 0.8505086  2336
[8555] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.3476120  1.0000000 0.3476120 1.0265353  2824
[8556] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {gill.size=b}                0.3476120  0.6326165 0.5494830 0.9157834  2824
[8557] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.color.above.ring=w}   0.3476120  0.5227693 0.6649434 0.9513840  2824
[8558] {gill.size=b,                                                                                              
        stalk.color.above.ring=w}   => {veil.color=w}               0.3476120  1.0000000 0.3476120 1.0252398  2824
[8559] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {gill.size=b}                0.3476120  0.6326165 0.5494830 0.9157834  2824
[8560] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.color.above.ring=w}   0.3476120  0.5210332 0.6671590 0.9482244  2824
[8561] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {ring.number=o}              0.3643525  0.9367089 0.3889710 1.0162691  2960
[8562] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {gill.spacing=c}             0.3643525  0.7444668 0.4894141 0.8878521  2960
[8563] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {gill.attachment=f}          0.3889710  1.0000000 0.3889710 1.0265353  3160
[8564] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {gill.spacing=c}             0.3889710  0.7078853 0.5494830 0.8442249  3160
[8565] {gill.spacing=c,                                                                                           
        stalk.color.above.ring=w}   => {veil.color=w}               0.3889710  1.0000000 0.3889710 1.0252398  3160
[8566] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {gill.spacing=c}             0.3889710  0.7078853 0.5494830 0.8442249  3160
[8567] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {gill.attachment=f}          0.4894141  1.0000000 0.4894141 1.0265353  3976
[8568] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {ring.number=o}              0.4894141  0.8906810 0.5494830 0.9663318  3976
[8569] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.color.above.ring=w}   0.4894141  0.5449561 0.8980798 0.9917616  3976
[8570] {stalk.color.above.ring=w,                                                                                 
        ring.number=o}              => {veil.color=w}               0.4894141  1.0000000 0.4894141 1.0252398  3976
[8571] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {ring.number=o}              0.4894141  0.8906810 0.5494830 0.9663318  3976
[8572] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.color.above.ring=w}   0.4894141  0.5455543 0.8970950 0.9928502  3976
[8573] {gill.attachment=f,                                                                                        
        stalk.color.above.ring=w}   => {veil.color=w}               0.5494830  1.0000000 0.5494830 1.0252398  4464
[8574] {stalk.color.above.ring=w,                                                                                 
        veil.color=w}               => {gill.attachment=f}          0.5494830  1.0000000 0.5494830 1.0265353  4464
[8575] {gill.attachment=f,                                                                                        
        veil.color=w}               => {stalk.color.above.ring=w}   0.5494830  0.5646345 0.9731659 1.0275740  4464
[8576] {bruises=f,                                                                                                
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.1536189  0.5000000 0.3072378 0.8229335  1248
[8577] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.1536189  0.6582278 0.2333826 1.1604694  1248
[8578] {bruises=f,                                                                                                
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.1536189  0.5000000 0.3072378 0.7847759  1248
[8579] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.1536189  0.6419753 0.2392910 1.1318158  1248
[8580] {bruises=f,                                                                                                
        stalk.shape=t}              => {gill.spacing=c}             0.2127031  0.6923077 0.3072378 0.8256470  1728
[8581] {bruises=f,                                                                                                
        stalk.shape=t}              => {ring.number=o}              0.3072378  1.0000000 0.3072378 1.0849359  2496
[8582] {stalk.shape=t,                                                                                            
        ring.number=o}              => {bruises=f}                  0.3072378  0.5416667 0.5672083 0.9268113  2496
[8583] {bruises=f,                                                                                                
        ring.number=o}              => {stalk.shape=t}              0.3072378  0.5662432 0.5425899 0.9982985  2496
[8584] {bruises=f,                                                                                                
        stalk.shape=t}              => {gill.attachment=f}          0.3072378  1.0000000 0.3072378 1.0265353  2496
[8585] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {bruises=f}                  0.3072378  0.5416667 0.5672083 0.9268113  2496
[8586] {bruises=f,                                                                                                
        gill.attachment=f}          => {stalk.shape=t}              0.3072378  0.5500220 0.5585918 0.9697003  2496
[8587] {bruises=f,                                                                                                
        stalk.shape=t}              => {veil.color=w}               0.3072378  1.0000000 0.3072378 1.0252398  2496
[8588] {stalk.shape=t,                                                                                            
        veil.color=w}               => {bruises=f}                  0.3072378  0.5416667 0.5672083 0.9268113  2496
[8589] {bruises=f,                                                                                                
        veil.color=w}               => {stalk.shape=t}              0.3072378  0.5488127 0.5598227 0.9675682  2496
[8590] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.3101920  0.7835821 0.3958641 1.2298727  2520
[8591] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.3101920  0.7835821 0.3958641 1.2896720  2520
[8592] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.3101920  0.6063523 0.5115707 1.0690117  2520
[8593] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {gill.size=b}                0.2776957  0.7014925 0.3958641 1.0154892  2256
[8594] {gill.size=b,                                                                                              
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.2776957  0.8103448 0.3426883 1.3337199  2256
[8595] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.2776957  0.6635294 0.4185130 1.1698162  2256
[8596] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.3367799  0.8507463 0.3958641 1.0146011  2736
[8597] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.3367799  0.7307692 0.4608567 1.2027490  2736
[8598] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.3367799  0.6539197 0.5150172 1.1528740  2736
[8599] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {ring.number=o}              0.3958641  1.0000000 0.3958641 1.0849359  3216
[8600] {stalk.shape=t,                                                                                            
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3958641  0.6979167 0.5672083 1.1486781  3216
[8601] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {stalk.shape=t}              0.3958641  0.7153025 0.5534220 1.2610932  3216
[8602] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.3958641  1.0000000 0.3958641 1.0265353  3216
[8603] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {stalk.surface.below.ring=s} 0.3958641  0.6979167 0.5672083 1.1486781  3216
[8604] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {stalk.shape=t}              0.3958641  0.6779089 0.5839488 1.1951676  3216
[8605] {stalk.shape=t,                                                                                            
        stalk.surface.below.ring=s} => {veil.color=w}               0.3958641  1.0000000 0.3958641 1.0252398  3216
[8606] {stalk.shape=t,                                                                                            
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3958641  0.6979167 0.5672083 1.1486781  3216
[8607] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {stalk.shape=t}              0.3958641  0.6779089 0.5839488 1.1951676  3216
[8608] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {gill.size=b}                0.2776957  0.7014925 0.3958641 1.0154892  2256
[8609] {gill.size=b,                                                                                              
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.2776957  0.8103448 0.3426883 1.2718782  2256
[8610] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.2776957  0.6280624 0.4421467 1.1072870  2256
[8611] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.3367799  0.8507463 0.3958641 1.0146011  2736
[8612] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.3367799  0.7307692 0.4608567 1.1469801  2736
[8613] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.3367799  0.6184448 0.5445593 1.0903311  2736
[8614] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {ring.number=o}              0.3958641  1.0000000 0.3958641 1.0849359  3216
[8615] {stalk.shape=t,                                                                                            
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3958641  0.6979167 0.5672083 1.0954163  3216
[8616] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {stalk.shape=t}              0.3958641  0.6790541 0.5829641 1.1971864  3216
[8617] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.3958641  1.0000000 0.3958641 1.0265353  3216
[8618] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {stalk.surface.above.ring=s} 0.3958641  0.6979167 0.5672083 1.0954163  3216
[8619] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {stalk.shape=t}              0.3958641  0.6452648 0.6134909 1.1376154  3216
[8620] {stalk.shape=t,                                                                                            
        stalk.surface.above.ring=s} => {veil.color=w}               0.3958641  1.0000000 0.3958641 1.0252398  3216
[8621] {stalk.shape=t,                                                                                            
        veil.color=w}               => {stalk.surface.above.ring=s} 0.3958641  0.6979167 0.5672083 1.0954163  3216
[8622] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {stalk.shape=t}              0.3958641  0.6452648 0.6134909 1.1376154  3216
[8623] {gill.size=b,                                                                                              
        stalk.shape=t}              => {gill.spacing=c}             0.2481536  0.7241379 0.3426883 0.8636078  2016
[8624] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {gill.size=b}                0.2481536  0.5384615 0.4608567 0.7794835  2016
[8625] {gill.size=b,                                                                                              
        stalk.shape=t}              => {ring.number=o}              0.3426883  1.0000000 0.3426883 1.0849359  2784
[8626] {stalk.shape=t,                                                                                            
        ring.number=o}              => {gill.size=b}                0.3426883  0.6041667 0.5672083 0.8745991  2784
[8627] {gill.size=b,                                                                                              
        ring.number=o}              => {stalk.shape=t}              0.3426883  0.5594855 0.6125062 0.9863846  2784
[8628] {gill.size=b,                                                                                              
        stalk.shape=t}              => {gill.attachment=f}          0.3426883  1.0000000 0.3426883 1.0265353  2784
[8629] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {gill.size=b}                0.3426883  0.6041667 0.5672083 0.8745991  2784
[8630] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.shape=t}              0.3426883  0.5153647 0.6649434 0.9085987  2784
[8631] {gill.size=b,                                                                                              
        stalk.shape=t}              => {veil.color=w}               0.3426883  1.0000000 0.3426883 1.0252398  2784
[8632] {stalk.shape=t,                                                                                            
        veil.color=w}               => {gill.size=b}                0.3426883  0.6041667 0.5672083 0.8745991  2784
[8633] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.shape=t}              0.3426883  0.5136531 0.6671590 0.9055812  2784
[8634] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {ring.number=o}              0.4608567  1.0000000 0.4608567 1.0849359  3744
[8635] {stalk.shape=t,                                                                                            
        ring.number=o}              => {gill.spacing=c}             0.4608567  0.8125000 0.5672083 0.9689885  3744
[8636] {gill.spacing=c,                                                                                           
        ring.number=o}              => {stalk.shape=t}              0.4608567  0.5792079 0.7956672 1.0211556  3744
[8637] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {gill.attachment=f}          0.4608567  1.0000000 0.4608567 1.0265353  3744
[8638] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {gill.spacing=c}             0.4608567  0.8125000 0.5672083 0.9689885  3744
[8639] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {stalk.shape=t}              0.4608567  0.5671009 0.8126539 0.9998107  3744
[8640] {gill.spacing=c,                                                                                           
        stalk.shape=t}              => {veil.color=w}               0.4608567  1.0000000 0.4608567 1.0252398  3744
[8641] {stalk.shape=t,                                                                                            
        veil.color=w}               => {gill.spacing=c}             0.4608567  0.8125000 0.5672083 0.9689885  3744
[8642] {gill.spacing=c,                                                                                           
        veil.color=w}               => {stalk.shape=t}              0.4608567  0.5655589 0.8148695 0.9970921  3744
[8643] {stalk.shape=t,                                                                                            
        ring.number=o}              => {gill.attachment=f}          0.5672083  1.0000000 0.5672083 1.0265353  4608
[8644] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {ring.number=o}              0.5672083  1.0000000 0.5672083 1.0849359  4608
[8645] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.shape=t}              0.5672083  0.6315789 0.8980798 1.1134868  4608
[8646] {stalk.shape=t,                                                                                            
        ring.number=o}              => {veil.color=w}               0.5672083  1.0000000 0.5672083 1.0252398  4608
[8647] {stalk.shape=t,                                                                                            
        veil.color=w}               => {ring.number=o}              0.5672083  1.0000000 0.5672083 1.0849359  4608
[8648] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.shape=t}              0.5672083  0.6322722 0.8970950 1.1147091  4608
[8649] {gill.attachment=f,                                                                                        
        stalk.shape=t}              => {veil.color=w}               0.5672083  1.0000000 0.5672083 1.0252398  4608
[8650] {stalk.shape=t,                                                                                            
        veil.color=w}               => {gill.attachment=f}          0.5672083  1.0000000 0.5672083 1.0265353  4608
[8651] {gill.attachment=f,                                                                                        
        veil.color=w}               => {stalk.shape=t}              0.5672083  0.5828485 0.9731659 1.0275740  4608
[8652] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.1462334  0.6265823 0.2333826 0.9834533  1188
[8653] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.1462334  0.6111111 0.2392910 1.0058077  1188
[8654] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.1536189  0.6582278 0.2333826 0.7850034  1248
[8655] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {ring.number=o}              0.2156573  0.9240506 0.2333826 1.0025357  1752
[8656] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.2097489  0.8987342 0.2333826 0.9225823  1704
[8657] {bruises=f,                                                                                                
        stalk.surface.below.ring=s} => {veil.color=w}               0.2097489  0.8987342 0.2333826 0.9214180  1704
[8658] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.1595273  0.6666667 0.2392910 0.7950675  1296
[8659] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {ring.number=o}              0.2215657  0.9259259 0.2392910 1.0045703  1800
[8660] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.2156573  0.9012346 0.2392910 0.9251491  1752
[8661] {bruises=f,                                                                                                
        stalk.surface.above.ring=s} => {veil.color=w}               0.2156573  0.9012346 0.2392910 0.9239815  1752
[8662] {bruises=f,                                                                                                
        gill.size=b}                => {gill.spacing=c}             0.1895618  0.5932203 0.3195470 0.7074753  1540
[8663] {bruises=f,                                                                                                
        gill.size=b}                => {ring.number=o}              0.2776957  0.8690293 0.3195470 0.9428411  2256
[8664] {bruises=f,                                                                                                
        ring.number=o}              => {gill.size=b}                0.2776957  0.5117967 0.5425899 0.7408832  2256
[8665] {bruises=f,                                                                                                
        gill.size=b}                => {gill.attachment=f}          0.2936977  0.9191063 0.3195470 0.9434950  2386
[8666] {bruises=f,                                                                                                
        gill.attachment=f}          => {gill.size=b}                0.2936977  0.5257823 0.5585918 0.7611289  2386
[8667] {bruises=f,                                                                                                
        gill.size=b}                => {veil.color=w}               0.2959133  0.9260401 0.3195470 0.9494131  2404
[8668] {bruises=f,                                                                                                
        veil.color=w}               => {gill.size=b}                0.2959133  0.5285840 0.5598227 0.7651847  2404
[8669] {bruises=f,                                                                                                
        gill.spacing=c}             => {ring.number=o}              0.4293452  0.9853107 0.4357459 1.0689990  3488
[8670] {bruises=f,                                                                                                
        ring.number=o}              => {gill.spacing=c}             0.4293452  0.7912886 0.5425899 0.9436918  3488
[8671] {gill.spacing=c,                                                                                           
        ring.number=o}              => {bruises=f}                  0.4293452  0.5396040 0.7956672 0.9232819  3488
[8672] {bruises=f,                                                                                                
        gill.spacing=c}             => {gill.attachment=f}          0.4098966  0.9406780 0.4357459 0.9656391  3330
[8673] {bruises=f,                                                                                                
        gill.attachment=f}          => {gill.spacing=c}             0.4098966  0.7338034 0.5585918 0.8751349  3330
[8674] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {bruises=f}                  0.4098966  0.5043926 0.8126539 0.8630340  3330
[8675] {bruises=f,                                                                                                
        gill.spacing=c}             => {veil.color=w}               0.4121123  0.9457627 0.4357459 0.9696336  3348
[8676] {bruises=f,                                                                                                
        veil.color=w}               => {gill.spacing=c}             0.4121123  0.7361478 0.5598227 0.8779308  3348
[8677] {gill.spacing=c,                                                                                           
        veil.color=w}               => {bruises=f}                  0.4121123  0.5057402 0.8148695 0.8653398  3348
[8678] {bruises=f,                                                                                                
        ring.number=o}              => {gill.attachment=f}          0.5189562  0.9564428 0.5425899 0.9818223  4216
[8679] {bruises=f,                                                                                                
        gill.attachment=f}          => {ring.number=o}              0.5189562  0.9290436 0.5585918 1.0079528  4216
[8680] {gill.attachment=f,                                                                                        
        ring.number=o}              => {bruises=f}                  0.5189562  0.5778509 0.8980798 0.9887238  4216
[8681] {bruises=f,                                                                                                
        ring.number=o}              => {veil.color=w}               0.5179714  0.9546279 0.5425899 0.9787225  4208
[8682] {bruises=f,                                                                                                
        veil.color=w}               => {ring.number=o}              0.5179714  0.9252419 0.5598227 1.0038281  4208
[8683] {veil.color=w,                                                                                             
        ring.number=o}              => {bruises=f}                  0.5179714  0.5773875 0.8970950 0.9879309  4208
[8684] {bruises=f,                                                                                                
        gill.attachment=f}          => {veil.color=w}               0.5576071  0.9982371 0.5585918 1.0234324  4530
[8685] {bruises=f,                                                                                                
        veil.color=w}               => {gill.attachment=f}          0.5576071  0.9960422 0.5598227 1.0224724  4530
[8686] {gill.attachment=f,                                                                                        
        veil.color=w}               => {bruises=f}                  0.5576071  0.5729825 0.9731659 0.9803939  4530
[8687] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {gill.size=b}                0.3771541  0.7372474 0.5115707 1.0672483  3064
[8688] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.3771541  0.9011765 0.4185130 1.4144431  3064
[8689] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.3771541  0.8530067 0.4421467 1.4039356  3064
[8690] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.4529788  0.8854668 0.5115707 1.0560088  3680
[8691] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.4529788  0.8795411 0.5150172 1.3804853  3680
[8692] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.4529788  0.8318264 0.5445593 1.3690757  3680
[8693] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {ring.number=o}              0.4662728  0.9114533 0.5115707 0.9888684  3788
[8694] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {stalk.surface.above.ring=s} 0.4662728  0.8425267 0.5534220 1.3223893  3788
[8695] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {stalk.surface.below.ring=s} 0.4662728  0.7998311 0.5829641 1.3164157  3788
[8696] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.4879370  0.9538017 0.5115707 0.9791111  3964
[8697] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {stalk.surface.above.ring=s} 0.4879370  0.8355818 0.5839488 1.3114889  3964
[8698] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {stalk.surface.below.ring=s} 0.4879370  0.7953451 0.6134909 1.3090323  3964
[8699] {stalk.surface.above.ring=s,                                                                               
        stalk.surface.below.ring=s} => {veil.color=w}               0.4879370  0.9538017 0.5115707 0.9778755  3964
[8700] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {stalk.surface.above.ring=s} 0.4879370  0.8355818 0.5839488 1.3114889  3964
[8701] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {stalk.surface.below.ring=s} 0.4879370  0.7953451 0.6134909 1.3090323  3964
[8702] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.3535204  0.8447059 0.4185130 1.0073973  2872
[8703] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {gill.size=b}                0.3535204  0.6864245 0.5150172 0.9936765  2872
[8704] {gill.spacing=c,                                                                                           
        gill.size=b}                => {stalk.surface.below.ring=s} 0.3535204  0.6303775 0.5608075 1.0375176  2872
[8705] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {ring.number=o}              0.3643525  0.8705882 0.4185130 0.9445324  2960
[8706] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {gill.size=b}                0.3643525  0.6583630 0.5534220 0.9530543  2960
[8707] {gill.size=b,                                                                                              
        ring.number=o}              => {stalk.surface.below.ring=s} 0.3643525  0.5948553 0.6125062 0.9790528  2960
[8708] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.3948794  0.9435294 0.4185130 0.9685662  3208
[8709] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {gill.size=b}                0.3948794  0.6762226 0.5839488 0.9789081  3208
[8710] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.surface.below.ring=s} 0.3948794  0.5938541 0.6649434 0.9774050  3208
[8711] {gill.size=b,                                                                                              
        stalk.surface.below.ring=s} => {veil.color=w}               0.3948794  0.9435294 0.4185130 0.9673439  3208
[8712] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {gill.size=b}                0.3948794  0.6762226 0.5839488 0.9789081  3208
[8713] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.surface.below.ring=s} 0.3948794  0.5918819 0.6671590 0.9741590  3208
[8714] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {ring.number=o}              0.4785820  0.9292543 0.5150172 1.0081814  3888
[8715] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {gill.spacing=c}             0.4785820  0.8647687 0.5534220 1.0313242  3888
[8716] {gill.spacing=c,                                                                                           
        ring.number=o}              => {stalk.surface.below.ring=s} 0.4785820  0.6014851 0.7956672 0.9899646  3888
[8717] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {gill.attachment=f}          0.4913836  0.9541109 0.5150172 0.9794285  3992
[8718] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {gill.spacing=c}             0.4913836  0.8414840 0.5839488 1.0035549  3992
[8719] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {stalk.surface.below.ring=s} 0.4913836  0.6046653 0.8126539 0.9951986  3992
[8720] {gill.spacing=c,                                                                                           
        stalk.surface.below.ring=s} => {veil.color=w}               0.4913836  0.9541109 0.5150172 0.9781924  3992
[8721] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {gill.spacing=c}             0.4913836  0.8414840 0.5839488 1.0035549  3992
[8722] {gill.spacing=c,                                                                                           
        veil.color=w}               => {stalk.surface.below.ring=s} 0.4913836  0.6030211 0.8148695 0.9924927  3992
[8723] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {gill.attachment=f}          0.5297883  0.9572954 0.5534220 0.9826974  4304
[8724] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {ring.number=o}              0.5297883  0.9072513 0.5839488 0.9843095  4304
[8725] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.surface.below.ring=s} 0.5297883  0.5899123 0.8980798 0.9709172  4304
[8726] {stalk.surface.below.ring=s,                                                                               
        ring.number=o}              => {veil.color=w}               0.5297883  0.9572954 0.5534220 0.9814573  4304
[8727] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {ring.number=o}              0.5297883  0.9072513 0.5839488 0.9843095  4304
[8728] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.surface.below.ring=s} 0.5297883  0.5905598 0.8970950 0.9719830  4304
[8729] {gill.attachment=f,                                                                                        
        stalk.surface.below.ring=s} => {veil.color=w}               0.5839488  1.0000000 0.5839488 1.0252398  4744
[8730] {stalk.surface.below.ring=s,                                                                               
        veil.color=w}               => {gill.attachment=f}          0.5839488  1.0000000 0.5839488 1.0265353  4744
[8731] {gill.attachment=f,                                                                                        
        veil.color=w}               => {stalk.surface.below.ring=s} 0.5839488  0.6000506 0.9731659 0.9876035  4744
[8732] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.3771541  0.8530067 0.4421467 1.0172969  3064
[8733] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {gill.size=b}                0.3771541  0.6925859 0.5445593 1.0025958  3064
[8734] {gill.spacing=c,                                                                                           
        gill.size=b}                => {stalk.surface.above.ring=s} 0.3771541  0.6725198 0.5608075 1.0555546  3064
[8735] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {ring.number=o}              0.3879862  0.8775056 0.4421467 0.9520373  3152
[8736] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {gill.size=b}                0.3879862  0.6655405 0.5829641 0.9634446  3152
[8737] {gill.size=b,                                                                                              
        ring.number=o}              => {stalk.surface.above.ring=s} 0.3879862  0.6334405 0.6125062 0.9942177  3152
[8738] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.4185130  0.9465479 0.4421467 0.9716648  3400
[8739] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {gill.size=b}                0.4185130  0.6821830 0.6134909 0.9875365  3400
[8740] {gill.attachment=f,                                                                                        
        gill.size=b}                => {stalk.surface.above.ring=s} 0.4185130  0.6293965 0.6649434 0.9878704  3400
[8741] {gill.size=b,                                                                                              
        stalk.surface.above.ring=s} => {veil.color=w}               0.4185130  0.9465479 0.4421467 0.9704385  3400
[8742] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {gill.size=b}                0.4185130  0.6821830 0.6134909 0.9875365  3400
[8743] {gill.size=b,                                                                                              
        veil.color=w}               => {stalk.surface.above.ring=s} 0.4185130  0.6273063 0.6671590 0.9845897  3400
[8744] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {ring.number=o}              0.5081241  0.9330922 0.5445593 1.0123452  4128
[8745] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {gill.spacing=c}             0.5081241  0.8716216 0.5829641 1.0394971  4128
[8746] {gill.spacing=c,                                                                                           
        ring.number=o}              => {stalk.surface.above.ring=s} 0.5081241  0.6386139 0.7956672 1.0023375  4128
[8747] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {gill.attachment=f}          0.5209257  0.9566004 0.5445593 0.9819840  4232
[8748] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {gill.spacing=c}             0.5209257  0.8491172 0.6134909 1.0126582  4232
[8749] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {stalk.surface.above.ring=s} 0.5209257  0.6410179 0.8126539 1.0061107  4232
[8750] {gill.spacing=c,                                                                                           
        stalk.surface.above.ring=s} => {veil.color=w}               0.5209257  0.9566004 0.5445593 0.9807447  4232
[8751] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {gill.spacing=c}             0.5209257  0.8491172 0.6134909 1.0126582  4232
[8752] {gill.spacing=c,                                                                                           
        veil.color=w}               => {stalk.surface.above.ring=s} 0.5209257  0.6392749 0.8148695 1.0033751  4232
[8753] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {gill.attachment=f}          0.5593304  0.9594595 0.5829641 0.9849190  4544
[8754] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {ring.number=o}              0.5593304  0.9117175 0.6134909 0.9891550  4544
[8755] {gill.attachment=f,                                                                                        
        ring.number=o}              => {stalk.surface.above.ring=s} 0.5593304  0.6228070 0.8980798 0.9775279  4544
[8756] {stalk.surface.above.ring=s,                                                                               
        ring.number=o}              => {veil.color=w}               0.5593304  0.9594595 0.5829641 0.9836760  4544
[8757] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {ring.number=o}              0.5593304  0.9117175 0.6134909 0.9891550  4544
[8758] {veil.color=w,                                                                                             
        ring.number=o}              => {stalk.surface.above.ring=s} 0.5593304  0.6234907 0.8970950 0.9786009  4544
[8759] {gill.attachment=f,                                                                                        
        stalk.surface.above.ring=s} => {veil.color=w}               0.6134909  1.0000000 0.6134909 1.0252398  4984
[8760] {stalk.surface.above.ring=s,                                                                               
        veil.color=w}               => {gill.attachment=f}          0.6134909  1.0000000 0.6134909 1.0265353  4984
[8761] {gill.attachment=f,                                                                                        
        veil.color=w}               => {stalk.surface.above.ring=s} 0.6134909  0.6304073 0.9731659 0.9894569  4984
[8762] {gill.spacing=c,                                                                                           
        gill.size=b}                => {ring.number=o}              0.5179714  0.9236172 0.5608075 1.0020655  4208
[8763] {gill.size=b,                                                                                              
        ring.number=o}              => {gill.spacing=c}             0.5179714  0.8456592 0.6125062 1.0085342  4208
[8764] {gill.spacing=c,                                                                                           
        ring.number=o}              => {gill.size=b}                0.5179714  0.6509901 0.7956672 0.9423812  4208
[8765] {gill.spacing=c,                                                                                           
        gill.size=b}                => {gill.attachment=f}          0.5349581  0.9539069 0.5608075 0.9792191  4346
[8766] {gill.attachment=f,                                                                                        
        gill.size=b}                => {gill.spacing=c}             0.5349581  0.8045168 0.6649434 0.9594678  4346
[8767] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {gill.size=b}                0.5349581  0.6582854 0.8126539 0.9529420  4346
[8768] {gill.spacing=c,                                                                                           
        gill.size=b}                => {veil.color=w}               0.5371738  0.9578578 0.5608075 0.9820339  4364
[8769] {gill.size=b,                                                                                              
        veil.color=w}               => {gill.spacing=c}             0.5371738  0.8051661 0.6671590 0.9602421  4364
[8770] {gill.spacing=c,                                                                                           
        veil.color=w}               => {gill.size=b}                0.5371738  0.6592145 0.8148695 0.9542870  4364
[8771] {gill.size=b,                                                                                              
        ring.number=o}              => {gill.attachment=f}          0.5888725  0.9614148 0.6125062 0.9869262  4784
[8772] {gill.attachment=f,                                                                                        
        gill.size=b}                => {ring.number=o}              0.5888725  0.8855979 0.6649434 0.9608170  4784
[8773] {gill.attachment=f,                                                                                        
        ring.number=o}              => {gill.size=b}                0.5888725  0.6557018 0.8980798 0.9492019  4784
[8774] {gill.size=b,                                                                                              
        ring.number=o}              => {veil.color=w}               0.5888725  0.9614148 0.6125062 0.9856807  4784
[8775] {gill.size=b,                                                                                              
        veil.color=w}               => {ring.number=o}              0.5888725  0.8826568 0.6671590 0.9576261  4784
[8776] {veil.color=w,                                                                                             
        ring.number=o}              => {gill.size=b}                0.5888725  0.6564215 0.8970950 0.9502438  4784
[8777] {gill.attachment=f,                                                                                        
        gill.size=b}                => {veil.color=w}               0.6649434  1.0000000 0.6649434 1.0252398  5402
[8778] {gill.size=b,                                                                                              
        veil.color=w}               => {gill.attachment=f}          0.6649434  0.9966790 0.6671590 1.0231261  5402
[8779] {gill.attachment=f,                                                                                        
        veil.color=w}               => {gill.size=b}                0.6649434  0.6832785 0.9731659 0.9891224  5402
[8780] {gill.spacing=c,                                                                                           
        ring.number=o}              => {gill.attachment=f}          0.7720335  0.9702970 0.7956672 0.9960441  6272
[8781] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {ring.number=o}              0.7720335  0.9500151 0.8126539 1.0307055  6272
[8782] {gill.attachment=f,                                                                                        
        ring.number=o}              => {gill.spacing=c}             0.7720335  0.8596491 0.8980798 1.0252187  6272
[8783] {gill.spacing=c,                                                                                           
        ring.number=o}              => {veil.color=w}               0.7720335  0.9702970 0.7956672 0.9947871  6272
[8784] {gill.spacing=c,                                                                                           
        veil.color=w}               => {ring.number=o}              0.7720335  0.9474320 0.8148695 1.0279030  6272
[8785] {veil.color=w,                                                                                             
        ring.number=o}              => {gill.spacing=c}             0.7720335  0.8605928 0.8970950 1.0263440  6272
[8786] {gill.attachment=f,                                                                                        
        gill.spacing=c}             => {veil.color=w}               0.8126539  1.0000000 0.8126539 1.0252398  6602
[8787] {gill.spacing=c,                                                                                           
        veil.color=w}               => {gill.attachment=f}          0.8126539  0.9972810 0.8148695 1.0237441  6602
[8788] {gill.attachment=f,                                                                                        
        veil.color=w}               => {gill.spacing=c}             0.8126539  0.8350620 0.9731659 0.9958960  6602
[8789] {gill.attachment=f,                                                                                        
        ring.number=o}              => {veil.color=w}               0.8970950  0.9989035 0.8980798 1.0241156  7288
[8790] {veil.color=w,                                                                                             
        ring.number=o}              => {gill.attachment=f}          0.8970950  1.0000000 0.8970950 1.0265353  7288
[8791] {gill.attachment=f,                                                                                        
        veil.color=w}               => {ring.number=o}              0.8970950  0.9218315 0.9731659 1.0001281  7288

1.1 ¿Cuantas reglas se han generado?

In [29]:
cat("Se han generado un total de", length(rules) ,"reglas")
#8791
Se han generado un total de 8791 reglas

1.2 ¿Existe alguna regla redundante?, ¿Cuántas?

In [31]:
indRedundantRules <- which(is.redundant(rules))
In [32]:
cat("Numero de reglas redundantes:",length(indRedundantRules))
cat("\n")
cat("Porcentaje de reglas redundates:",length(indRedundantRules)/length(rules),"%")
Numero de reglas redundantes: 5085
Porcentaje de reglas redundates: 0.5784325 %

1.3 ¿Existe alguna regla que incluya la variable objetivo: Class=edible ó Class=poisonous?, ¿Cuantas?

In [33]:
rules_e_p=(subset(rules, subset = rhs %in% c("class=p","class=e") | lhs %in% c("class=p","class=e")))

cat("Numero de reglas que complen la condicion",length(rules_e_p))
Numero de reglas que complen la condicion 1492

1.4 De cara a ser utilizada como modelo predictivo es adecuado que la variable objetivo se encuentre en el consecuente de la regla de asociación, ¿se da esta propiedad en alguna regla?

In [ ]:
#No tiene ningun sentido. Esa regla no aporta ningun tipo de informacion. Se ve 
#muy facil con el ejemplo de clase
#Comprar {naranjas,pan,mantequilla} => comprar {naranjas} 

#Como se dice la slide 21 de S03_AssociationRules.pdf 
#"Definimos  una  regla de asociación  como  una  implicación  X -> Y,  donde  
#X  es  un  conjunto  de 
#items e Y es un conjunto de items no incluidos en X."
#Por tanto por deficion no hay ninguna regla que cumpla esa propiedad.

1.5 Considerar los subconjuntos de reglas con ambas clases como consecuente e ilustrar las variables implicadas en cada caso. Considerar alguno de los grafos vistos para apoyar las conclusiones obtenidas.

In [34]:
rules_e_cons=(subset(rules, subset = rhs %in% c("class=e")))

rules_p_cons=(subset(rules, subset = rhs %in% c("class=p")))

inspect(head(sort(rules_e_cons, by ="confidence"),20))

inspect(head(sort(rules_p_cons, by ="confidence"),20))
     lhs                                          rhs       support  
[1]  {gill.size=b,gill.color=n}                => {class=e} 0.1083210
[2]  {odor=n,stalk.root=e}                     => {class=e} 0.1063516
[3]  {bruises=f,stalk.root=e}                  => {class=e} 0.1063516
[4]  {gill.spacing=w,habitat=g}                => {class=e} 0.1299852
[5]  {gill.spacing=w,stalk.shape=t}            => {class=e} 0.1063516
[6]  {gill.spacing=w,gill.size=b}              => {class=e} 0.1299852
[7]  {bruises=t,population=y}                  => {class=e} 0.1201379
[8]  {odor=n,population=y}                     => {class=e} 0.1191531
[9]  {ring.type=p,population=y}                => {class=e} 0.1280158
[10] {stalk.shape=t,population=y}              => {class=e} 0.1063516
[11] {stalk.surface.below.ring=s,population=y} => {class=e} 0.1142294
[12] {stalk.surface.above.ring=s,population=y} => {class=e} 0.1290005
[13] {cap.color=g,odor=n}                      => {class=e} 0.1270310
[14] {odor=n,spore.print.color=k}              => {class=e} 0.1595273
[15] {stalk.shape=t,spore.print.color=k}       => {class=e} 0.1536189
[16] {gill.size=b,spore.print.color=k}         => {class=e} 0.1969473
[17] {odor=n,spore.print.color=n}              => {class=e} 0.1654357
[18] {stalk.shape=t,spore.print.color=n}       => {class=e} 0.1595273
[19] {gill.size=b,spore.print.color=n}         => {class=e} 0.2028557
[20] {cap.surface=f,bruises=t}                 => {class=e} 0.1122600
     confidence coverage  lift     count
[1]  1          0.1083210 1.930608  880 
[2]  1          0.1063516 1.930608  864 
[3]  1          0.1063516 1.930608  864 
[4]  1          0.1299852 1.930608 1056 
[5]  1          0.1063516 1.930608  864 
[6]  1          0.1299852 1.930608 1056 
[7]  1          0.1201379 1.930608  976 
[8]  1          0.1191531 1.930608  968 
[9]  1          0.1280158 1.930608 1040 
[10] 1          0.1063516 1.930608  864 
[11] 1          0.1142294 1.930608  928 
[12] 1          0.1290005 1.930608 1048 
[13] 1          0.1270310 1.930608 1032 
[14] 1          0.1595273 1.930608 1296 
[15] 1          0.1536189 1.930608 1248 
[16] 1          0.1969473 1.930608 1600 
[17] 1          0.1654357 1.930608 1344 
[18] 1          0.1595273 1.930608 1296 
[19] 1          0.2028557 1.930608 1648 
[20] 1          0.1122600 1.930608  912 
     lhs                             rhs         support confidence  coverage     lift count
[1]  {ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[2]  {gill.color=b}               => {class=p} 0.2127031          1 0.2127031 2.074566  1728
[3]  {odor=f}                     => {class=p} 0.2658789          1 0.2658789 2.074566  2160
[4]  {ring.type=l,                                                                          
      spore.print.color=h}        => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[5]  {odor=f,                                                                               
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[6]  {stalk.surface.below.ring=k,                                                           
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[7]  {stalk.surface.above.ring=k,                                                           
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[8]  {stalk.shape=e,                                                                        
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[9]  {stalk.root=b,                                                                         
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[10] {bruises=f,                                                                            
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[11] {gill.size=b,                                                                          
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[12] {gill.spacing=c,                                                                       
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[13] {ring.number=o,                                                                        
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[14] {gill.attachment=f,                                                                    
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[15] {veil.color=w,                                                                         
      ring.type=l}                => {class=p} 0.1595273          1 0.1595273 2.074566  1296
[16] {cap.color=e,                                                                          
      gill.color=b}               => {class=p} 0.1063516          1 0.1063516 2.074566   864
[17] {cap.color=e,                                                                          
      gill.size=n}                => {class=p} 0.1063516          1 0.1063516 2.074566   864
[18] {cap.color=e,                                                                          
      bruises=f}                  => {class=p} 0.1078287          1 0.1078287 2.074566   876
[19] {odor=f,                                                                               
      spore.print.color=h}        => {class=p} 0.1949778          1 0.1949778 2.074566  1584
[20] {stalk.surface.below.ring=k,                                                           
      spore.print.color=h}        => {class=p} 0.1595273          1 0.1595273 2.074566  1296
In [ ]:
#Es posible observar por ejemplo que:
#       odor=n, bruises=t, gill.size=b, spore.print.color=n, habitat=d, son 
#       caracteristicas de mushrooms edible
# 
#       odor=f, bruises =f, gill.color=b, son caractetisticas de mushrooms poisonous
In [ ]:
#Algunos plots. Me funcionan perfectamente en mi rstudio pero no se por que no me funcionan en el hub
In [422]:
plot(rules_e_cons, engine = "htmlwidget")

plot(rules_e_cons, method = "matrix", measure="lift",engine = "htmlwidget")

plot(rules_e_cons, method="paracoord", engine = "htmlwidget")

plot(rules_e_cons, method = "graph", engine = "htmlwidget")

plot(rules_p_cons, engine = "htmlwidget")

plot(rules_p_cons, method = "matrix", measure="lift",engine = "htmlwidget")

plot(rules_p_cons, method="paracoord", engine = "htmlwidget")

plot(rules_p_cons, method = "graph", engine = "htmlwidget")
To reduce overplotting, jitter is added! Use jitter = 0 to prevent jitter.

Error in paracoord_arules(x, measure = measure, shading = shading, control = control, : Unknown engine for parallel coordinates plot 'htmlwidget' - Valid engine: 'default'.
Traceback:

1. plot(rules_e_cons, method = "paracoord", engine = "htmlwidget")
2. plot.rules(rules_e_cons, method = "paracoord", engine = "htmlwidget")
3. paracoord_arules(x, measure = measure, shading = shading, control = control, 
 .     ...)
4. stop("Unknown engine for parallel coordinates plot '", control$engine, 
 .     "' - Valid engine: 'default'.")

Punto 2

Para ello, dividiremos el dataset en dos subconjuntos indpendedientes de train y test (75% y 25% del total, respectivamente). Sobre el dataset de train, aplicaremos una cross-validación con 3 folds y la repetiremos 50 veces (recuerda que los árboles son sensibles a la partición train/test que se considere).

In [ ]:
## evaluation function for 
acc.class = function(x, y) {
  stopifnot(length(x) == length(y))
    return(sum(diag(table(x,y)))/length(x))
}
In [163]:
dimensions=dim(dataset)
n=dimensions[1]

set.seed(0)

indtrain = sample(1:n, round(0.75*n))  
indtest = setdiff(1:n, indtrain)

dataset.train <- dataset[indtrain, ]  # training
dataset.test <- dataset[-indtrain,]  # validation
In [141]:
#Pre poda optimizando la profundidad del arbol.
md = 1:10
trctrl = trainControl(method = "repeatedcv", number = 3,repeats = 50)
mod <- train(class ~ .,data = dataset.train, method = "rpart2",
              trControl = trctrl,
              tuneGrid = expand.grid(maxdepth = md))
             

plot(mod)
In [ ]:
#Elegir una profundidad maxima de 3 parece un buen trade-off.
In [142]:
t.opt= rpart(class ~., dataset, subset = ind, 
              maxdepth = 3)
In [143]:
#Configuracion del arbol completo
t.complet = tree(class ~., dataset, subset=ind,
             minsize=2,
             mindev=0)

2.1 ¿Cuál es la configuración óptima del árbol? ¿Hay alguna diferencia entre el árbol completo y el óptimo? ¿Por qué crees que ocurre esto?

In [144]:
library(rpart.plot)
rpart.plot(t.opt, extra=1)

plot(t.complet); 
text(t.complet, pretty = F)
In [145]:
#La configuracion completa del arbol requiere de mas niveles. Concretamente tenemos 4 niveles y 7 hojas. 
#Sin embargo en el arbol optimo tenemos 2 niveles y 3 hojas. 

#La ventaja del arbol optimo es que require menos capacidad de computo y no cae en overfitting. Al calcular
#su accuracy sobre el dataset.train y el dataset.test esta no va a ser 1 por ser menos exigente en cuanto a
#hojas y niveles.

#Vemos el accuracy en cada caso:
In [251]:
## validation
# accuracy 
#                    TRAIN 
pred.t.complet.train = predict(t.complet,dataset[indtrain, ], type = "class")
pred.t.opt.train = predict(t.opt,dataset[indtrain, ], type = "class")

acc.t.complet.train = sum(diag(table(dataset$class[indtrain],pred.t.complet.train)))/length(indtrain)
acc.t.opt.train = sum(diag(table(dataset$class[indtrain],pred.t.opt.train)))/length(indtrain)

cat("Acc t.opt train:",acc.t.opt.train,"\n","Acc t.complet train:",acc.t.complet.train)

#                      TEST
pred.t.complet.test = predict(t.complet,dataset[indtest, ], type = "class")
pred.t.opt.test = predict(t.opt,dataset[indtest, ], type = "class")

acc.t.complet.test = sum(diag(table(dataset$class[indtest],pred.t.complet.test)))/length(indtest)
acc.t.opt.test = sum(diag(table(dataset$class[indtest],pred.t.opt.test)))/length(indtest)

cat("\n","Acc t.opt test:",acc.t.opt.test,"\n","Acc t.complet test:",acc.t.complet.test)
Acc t.opt train: 0.9935992 
 Acc t.complet train: 1
 Acc t.opt test: 0.9955687 
 Acc t.complet test: 1

2.2 ¿Cuáles son las dos variables que mayor peso tienen a la hora de clasificar? Entrena un nuevo árbol considerando como predictores únicamente esas dos variables. ¿Qué resultados obtienes?

In [147]:
#Las dos variables que mayor peso tienen en el arbol optimo son <odor> y <spore.print.color>.

#En el arbol completo tambien son esas dos variables
In [193]:
#Me quedo solamente con la columna predictand y con las dos columnas predictores pedidas
dataset.train.dosPredictores=dataset.train[c('class','odor','spore.print.color')]
In [194]:
trctrl = trainControl(method = "repeatedcv", number = 3,repeats = 50)
mod2 <- train(class ~ .,data = dataset.train.dosPredictores, method = "rpart2",
              trControl = trctrl,
             )

plot(mod2)
In [254]:
## building tree up
t.opt.dosPredictores= rpart(class ~., dataset.train.dosPredictores,
              maxdepth = 3)
In [255]:
rpart.plot(t.opt.dosPredictores, extra = 1)
In [292]:
## validation
# accuracy 
#                    TRAIN 
pred.t.opt.dosPredictores = predict(t.opt.dosPredictores,dataset[indtrain, ], type = "class")

acc.t.opt.dosPredictores = 
            sum(diag(table(dataset$class[indtrain],pred.t.opt.dosPredictores )))/length(indtrain)

#                      TEST
pred.t.opt.dosPredictores.test = predict(t.opt.dosPredictores,dataset[indtest, ], type = "class")

acc.t.opt.dosPredictores.test = 
    sum(diag(table(dataset$class[indtest],pred.t.opt.dosPredictores.test)))/length(indtest)
#


cat("\n","Acc t.opt.dosPredictores train:",acc.t.opt.dosPredictores,"\n","Acc t.opt.dosPredictores test:",acc.t.opt.dosPredictores.test)
 Acc t.opt.dosPredictores train: 0.9935992 
 Acc t.opt.dosPredictores test: 0.9955687

2.3 Entrena un nuevo árbol considerando como predictores cualesquiera otras dos variables que no sean las utilizadas en la pregunta anterior. ¿Cuál es el error de test de este árbol?

In [257]:
#Elegimos dos variables aleatoriamente sin considerar <odor> y <spore.print.color>.
predictors=sample(names(dataset.train),2)
cat("Predictors:",predictors)
Predictors: gill.spacing stalk.color.above.ring
In [258]:
#Me quedo solamente con la columna predictand y con las dos columnas de predictores aleatorios
dataset.train.dosPredictores.aleatorios=dataset.train[c("class",predictors)]
In [259]:
names(dataset.train.dosPredictores.aleatorios)
  1. 'class'
  2. 'gill.spacing'
  3. 'stalk.color.above.ring'
In [260]:
#Entreno el arbol
trctrl = trainControl(method = "repeatedcv", number = 3,repeats = 50)
mod.dosPredicotes.aleatorios <- train(class ~ .,data = dataset.train.dosPredictores.aleatorios, 
              method = "rpart2",
              trControl = trctrl,tuneGrid = expand.grid(maxdepth=1:20)                         
             )
In [262]:
plot(mod.dosPredicotes.aleatorios)
mod.dosPredicotes.aleatorios
CART 

6093 samples
   2 predictors
   2 classes: 'e', 'p' 

No pre-processing
Resampling: Cross-Validated (3 fold, repeated 50 times) 
Summary of sample sizes: 4063, 4061, 4062, 4062, 4062, 4062, ... 
Resampling results across tuning parameters:

  maxdepth  Accuracy   Kappa    
   1        0.6118496  0.2476774
   2        0.6830790  0.3816893
   3        0.7063613  0.4231614
   4        0.7146201  0.4356356
   5        0.7152502  0.4368728
   6        0.7152502  0.4368728
   7        0.7152502  0.4368728
   8        0.7152502  0.4368728
   9        0.7152502  0.4368728
  10        0.7152502  0.4368728
  11        0.7152502  0.4368728
  12        0.7152502  0.4368728
  13        0.7152502  0.4368728
  14        0.7152502  0.4368728
  15        0.7152502  0.4368728
  16        0.7152502  0.4368728
  17        0.7152502  0.4368728
  18        0.7152502  0.4368728
  19        0.7152502  0.4368728
  20        0.7152502  0.4368728

Accuracy was used to select the optimal model using the largest value.
The final value used for the model was maxdepth = 5.
In [263]:
## building tree up
t.opt.dosPredictores.aleatorios= rpart(class ~., dataset.train.dosPredictores.aleatorios,
              maxdepth = 5)
In [264]:
rpart.plot(t.opt.dosPredictores.aleatorios, extra = 1)
In [298]:
#Dibujo la tabla de la funcion ROC para una mejor visualizacion
table(dataset$class[indtrain],pred.t.opt.dosPredictores.aleatorios )

table(dataset.train.dosPredictores.aleatorios$class[indtest],pred.t.opt.dosPredictores.aleatorios.test)
   pred.t.opt.dosPredictores.aleatorios
       e    p
  e 2233  958
  p 2302  600
   pred.t.opt.dosPredictores.aleatorios.test
      e   p
  e 687 100
  p 336 400
In [301]:
## validation
# accuracy 
#                    TRAIN 
pred.t.opt.dosPredictores.aleatorios = predict(t.opt.dosPredictores.aleatorios,
                                               dataset.train.dosPredictores.aleatorios[indtrain, ],
                                               type = "class")

acc.t.opt.dosPredictores.aleatorios = 
    sum(diag(table(dataset.train.dosPredictores.aleatorios$class[indtrain],
        pred.t.opt.dosPredictores.aleatorios )))/length(indtrain)

#                      TEST
pred.t.opt.dosPredictores.aleatorios.test = predict(t.opt.dosPredictores.aleatorios
                                                    ,dataset.train.dosPredictores.aleatorios[indtest, ]
                                                    , type = "class")

acc.t.opt.dosPredictores.aleatorios.test = 
    sum(diag(table(dataset.train.dosPredictores.aleatorios$class[indtest],
       pred.t.opt.dosPredictores.aleatorios.test)))/length(indtest)
#


cat("\n","Acc t.opt.dosPredictores train:",acc.t.opt.dosPredictores.aleatorios,
    "\n","Acc t.opt.dosPredictores test:",acc.t.opt.dosPredictores.aleatorios.test)
 Acc t.opt.dosPredictores train: 0.5383227 
 Acc t.opt.dosPredictores test: 0.5352043

Punto 3

3.1 Por un lado, las ramas del árbol pueden ser interpretadas como reglas de forma similar a las obtenidas por el algoritmo de reglas aplicado. Por ejemplo, en el caso del árbol obtenido con el dataset Play Tennis puede obtenerse las siguientes reglas: SI Outlook = Overcast -> Play Tennis = Yes ó SI (Outlook = Sunny) AND (Humidity = Normal) -> Play Tennis = Yes, cuya confianza asociada viene dada por la frecuencia relativa de cada caso en esa rama del árbol. Por otro lado, considerando las reglas que implican a nuestra variable objetivo tendríamos un modelo similar al dado por el árbol. Considerar y comparar ambas aproximaciones (p.e. ¿coinciden los antecedentes de las reglas? ¿alguna de las variables más frecuentes como antecedente en las reglas se corresponde con alguna de las variables con mayor capacidad de discriminación? etc.).

In [399]:
#Voy a analizar las reglas obtenidas en el arbol
In [423]:
#Cojo de todas las reglas posibles aquellas con confianza >0.5 y con soporte mayor de 0.01
#Quiero coger un soporte pequeno para no discriminar los valores poco frecuentes
rules <- apriori(dataset, 
                 parameter=list(support = 0.00001, confidence = 0.5,maxlen=3,target="rules"))
Apriori

Parameter specification:
 confidence minval smax arem  aval originalSupport maxtime support minlen
        0.5    0.1    1 none FALSE            TRUE       5   1e-05      1
 maxlen target  ext
      3  rules TRUE

Algorithmic control:
 filter tree heap memopt load sort verbose
    0.1 TRUE TRUE  FALSE TRUE    2    TRUE

Absolute minimum support count: 0 

set item appearances ...[0 item(s)] done [0.00s].
set transactions ...[118 item(s), 8124 transaction(s)] done [0.02s].
sorting and recoding items ... [118 item(s)] done [0.00s].
creating transaction tree ... done [0.01s].
checking subsets of size 1 2 3
Warning message in apriori(dataset, parameter = list(support = 1e-05, confidence = 0.5, :
“Mining stopped (maxlen reached). Only patterns up to a length of 3 returned!”
 done [0.10s].
writing ... [65345 rule(s)] done [0.02s].
creating S4 object  ... done [0.02s].
In [425]:
#Voy a coger las reglas en las que en rhs esta class=p o class=e. Asi considero la columna class como la 
#columna consecuente
rules.objetivo=subset(rules.p3,subset = rhs %in% c("class=p","class=e"))
inspect(rules.objetivo)
      lhs                           rhs            support confidence     coverage      lift count
[1]   {}                         => {class=e} 0.5179714426  0.5179714 1.0000000000 1.0000000  4208
[2]   {cap.surface=g}            => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[3]   {stalk.color.below.ring=y} => {class=p} 0.0029542097  1.0000000 0.0029542097 2.0745659    24
[4]   {stalk.color.below.ring=c} => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[5]   {odor=m}                   => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[6]   {spore.print.color=u}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[7]   {spore.print.color=b}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[8]   {spore.print.color=o}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[9]   {spore.print.color=y}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[10]  {spore.print.color=r}      => {class=p} 0.0088626292  1.0000000 0.0088626292 2.0745659    72
[11]  {stalk.color.below.ring=e} => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[12]  {habitat=w}                => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[13]  {stalk.root=r}             => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[14]  {odor=c}                   => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[15]  {stalk.color.below.ring=o} => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[16]  {odor=p}                   => {class=p} 0.0315115707  1.0000000 0.0315115707 2.0745659   256
[17]  {habitat=m}                => {class=e} 0.0315115707  0.8767123 0.0359428853 1.6925882   256
[18]  {habitat=u}                => {class=p} 0.0334810438  0.7391304 0.0452978828 1.5333748   272
[19]  {odor=l}                   => {class=e} 0.0492368291  1.0000000 0.0492368291 1.9306084   400
[20]  {odor=a}                   => {class=e} 0.0492368291  1.0000000 0.0492368291 1.9306084   400
[21]  {stalk.color.below.ring=b} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[22]  {stalk.color.below.ring=n} => {class=p} 0.0551452486  0.8750000 0.0630231413 1.8152451   448
[23]  {stalk.root=c}             => {class=e} 0.0630231413  0.9208633 0.0684391925 1.7778264   512
[24]  {odor=s}                   => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[25]  {odor=y}                   => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[26]  {stalk.color.below.ring=g} => {class=e} 0.0709010340  1.0000000 0.0709010340 1.9306084   576
[27]  {habitat=l}                => {class=p} 0.0728705071  0.7115385 0.1024126046 1.4761334   592
[28]  {stalk.root=e}             => {class=e} 0.1063515510  0.7714286 0.1378631216 1.4893265   864
[29]  {habitat=p}                => {class=p} 0.1240768095  0.8811189 0.1408173314 1.8279392  1008
[30]  {spore.print.color=h}      => {class=p} 0.1949778434  0.9705882 0.2008862629 2.0135492  1584
[31]  {stalk.color.below.ring=p} => {class=p} 0.1595273264  0.6923077 0.2304283604 1.4362379  1296
[32]  {spore.print.color=k}      => {class=e} 0.2028557361  0.8803419 0.2304283604 1.6995954  1648
[33]  {spore.print.color=n}      => {class=e} 0.2146725751  0.8861789 0.2422451994 1.7108643  1744
[34]  {habitat=g}                => {class=e} 0.1733136386  0.6554935 0.2644017725 1.2655012  1408
[35]  {odor=f}                   => {class=p} 0.2658788774  1.0000000 0.2658788774 2.0745659  2160
[36]  {cap.surface=f}            => {class=e} 0.1920236337  0.6724138 0.2855736091 1.2981677  1560
[37]  {spore.print.color=w}      => {class=p} 0.2230428360  0.7587940 0.2939438700 1.5741681  1812
[38]  {stalk.root=?}             => {class=p} 0.2166420483  0.7096774 0.3052683407 1.4722726  1760
[39]  {cap.surface=s}            => {class=p} 0.1738060069  0.5524257 0.3146233383 1.1460434  1412
[40]  {habitat=d}                => {class=e} 0.2314130970  0.5972046 0.3874938454 1.1529681  1880
[41]  {cap.surface=y}            => {class=p} 0.2141802068  0.5363748 0.3993106844 1.1127450  1740
[42]  {odor=n}                   => {class=e} 0.4194977843  0.9659864 0.4342688331 1.8649414  3408
[43]  {stalk.root=b}             => {class=e} 0.2363367799  0.5084746 0.4647956672 0.9816653  1920
[44]  {stalk.color.below.ring=w} => {class=e} 0.3328409650  0.6167883 0.5396356475 1.1907767  2704
[45]  {habitat=l,                                                                                 
       cap.surface=g}            => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[46]  {spore.print.color=w,                                                                       
       cap.surface=g}            => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[47]  {odor=n,                                                                                    
       cap.surface=g}            => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[48]  {cap.surface=g,                                                                             
       stalk.root=b}             => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[49]  {stalk.color.below.ring=w,                                                                  
       cap.surface=g}            => {class=p} 0.0004923683  1.0000000 0.0004923683 2.0745659     4
[50]  {stalk.color.below.ring=y,                                                                  
       stalk.root=c}             => {class=p} 0.0009847366  1.0000000 0.0009847366 2.0745659     8
[51]  {stalk.color.below.ring=y,                                                                  
       habitat=l}                => {class=p} 0.0009847366  1.0000000 0.0009847366 2.0745659     8
[52]  {stalk.color.below.ring=y,                                                                  
       cap.surface=f}            => {class=p} 0.0009847366  1.0000000 0.0009847366 2.0745659     8
[53]  {spore.print.color=w,                                                                       
       stalk.color.below.ring=y} => {class=p} 0.0029542097  1.0000000 0.0029542097 2.0745659    24
[54]  {stalk.color.below.ring=y,                                                                  
       stalk.root=?}             => {class=p} 0.0019694732  1.0000000 0.0019694732 2.0745659    16
[55]  {stalk.color.below.ring=y,                                                                  
       habitat=d}                => {class=p} 0.0019694732  1.0000000 0.0019694732 2.0745659    16
[56]  {stalk.color.below.ring=y,                                                                  
       cap.surface=y}            => {class=p} 0.0019694732  1.0000000 0.0019694732 2.0745659    16
[57]  {odor=n,                                                                                    
       stalk.color.below.ring=y} => {class=p} 0.0029542097  1.0000000 0.0029542097 2.0745659    24
[58]  {odor=m,                                                                                    
       stalk.color.below.ring=c} => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[59]  {stalk.color.below.ring=c,                                                                  
       stalk.root=c}             => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[60]  {spore.print.color=w,                                                                       
       stalk.color.below.ring=c} => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[61]  {stalk.color.below.ring=c,                                                                  
       habitat=d}                => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[62]  {stalk.color.below.ring=c,                                                                  
       cap.surface=y}            => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[63]  {odor=m,                                                                                    
       stalk.root=c}             => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[64]  {odor=m,                                                                                    
       spore.print.color=w}      => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[65]  {odor=m,                                                                                    
       habitat=d}                => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[66]  {odor=m,                                                                                    
       cap.surface=y}            => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[67]  {odor=l,                                                                                    
       spore.print.color=u}      => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[68]  {odor=a,                                                                                    
       spore.print.color=u}      => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[69]  {spore.print.color=u,                                                                       
       cap.surface=f}            => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[70]  {spore.print.color=u,                                                                       
       cap.surface=s}            => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[71]  {spore.print.color=u,                                                                       
       habitat=d}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[72]  {spore.print.color=u,                                                                       
       stalk.root=b}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[73]  {spore.print.color=u,                                                                       
       stalk.color.below.ring=w} => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[74]  {spore.print.color=b,                                                                       
       stalk.color.below.ring=o} => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[75]  {spore.print.color=b,                                                                       
       habitat=l}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[76]  {spore.print.color=b,                                                                       
       stalk.root=?}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[77]  {spore.print.color=b,                                                                       
       cap.surface=s}            => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[78]  {odor=n,                                                                                    
       spore.print.color=b}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[79]  {spore.print.color=o,                                                                       
       stalk.color.below.ring=o} => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[80]  {spore.print.color=o,                                                                       
       habitat=l}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[81]  {spore.print.color=o,                                                                       
       stalk.root=?}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[82]  {spore.print.color=o,                                                                       
       cap.surface=s}            => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[83]  {odor=n,                                                                                    
       spore.print.color=o}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[84]  {spore.print.color=y,                                                                       
       stalk.color.below.ring=o} => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[85]  {spore.print.color=y,                                                                       
       habitat=l}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[86]  {spore.print.color=y,                                                                       
       stalk.root=?}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[87]  {spore.print.color=y,                                                                       
       cap.surface=s}            => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[88]  {odor=n,                                                                                    
       spore.print.color=y}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[89]  {spore.print.color=r,                                                                       
       habitat=m}                => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[90]  {spore.print.color=r,                                                                       
       habitat=g}                => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[91]  {spore.print.color=r,                                                                       
       cap.surface=s}            => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[92]  {spore.print.color=r,                                                                       
       cap.surface=y}            => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[93]  {odor=n,                                                                                    
       spore.print.color=r}      => {class=p} 0.0088626292  1.0000000 0.0088626292 2.0745659    72
[94]  {spore.print.color=r,                                                                       
       stalk.root=b}             => {class=p} 0.0088626292  1.0000000 0.0088626292 2.0745659    72
[95]  {spore.print.color=r,                                                                       
       stalk.color.below.ring=w} => {class=p} 0.0088626292  1.0000000 0.0088626292 2.0745659    72
[96]  {stalk.color.below.ring=e,                                                                  
       habitat=w}                => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[97]  {spore.print.color=w,                                                                       
       stalk.color.below.ring=e} => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[98]  {stalk.color.below.ring=e,                                                                  
       stalk.root=?}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[99]  {stalk.color.below.ring=e,                                                                  
       cap.surface=s}            => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[100] {stalk.color.below.ring=e,                                                                  
       cap.surface=y}            => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[101] {odor=n,                                                                                    
       stalk.color.below.ring=e} => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[102] {spore.print.color=w,                                                                       
       habitat=w}                => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[103] {habitat=w,                                                                                 
       stalk.root=?}             => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[104] {habitat=w,                                                                                 
       cap.surface=s}            => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[105] {habitat=w,                                                                                 
       cap.surface=y}            => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[106] {odor=n,                                                                                    
       habitat=w}                => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[107] {stalk.color.below.ring=w,                                                                  
       habitat=w}                => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[108] {odor=l,                                                                                    
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[109] {odor=a,                                                                                    
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[110] {habitat=p,                                                                                 
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[111] {spore.print.color=k,                                                                       
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[112] {spore.print.color=n,                                                                       
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[113] {habitat=g,                                                                                 
       stalk.root=r}             => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[114] {cap.surface=y,                                                                             
       stalk.root=r}             => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[115] {stalk.color.below.ring=w,                                                                  
       stalk.root=r}             => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[116] {odor=c,                                                                                    
       spore.print.color=k}      => {class=p} 0.0118168390  1.0000000 0.0118168390 2.0745659    96
[117] {odor=c,                                                                                    
       spore.print.color=n}      => {class=p} 0.0118168390  1.0000000 0.0118168390 2.0745659    96
[118] {odor=c,                                                                                    
       cap.surface=f}            => {class=p} 0.0118168390  1.0000000 0.0118168390 2.0745659    96
[119] {odor=c,                                                                                    
       cap.surface=s}            => {class=p} 0.0118168390  1.0000000 0.0118168390 2.0745659    96
[120] {odor=c,                                                                                    
       habitat=d}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[121] {odor=c,                                                                                    
       stalk.root=b}             => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[122] {odor=c,                                                                                    
       stalk.color.below.ring=w} => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[123] {stalk.color.below.ring=o,                                                                  
       habitat=l}                => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[124] {spore.print.color=n,                                                                       
       stalk.color.below.ring=o} => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[125] {stalk.color.below.ring=o,                                                                  
       stalk.root=?}             => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[126] {stalk.color.below.ring=o,                                                                  
       cap.surface=s}            => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[127] {odor=n,                                                                                    
       stalk.color.below.ring=o} => {class=e} 0.0236336780  1.0000000 0.0236336780 1.9306084   192
[128] {odor=p,                                                                                    
       habitat=u}                => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[129] {odor=p,                                                                                    
       stalk.root=e}             => {class=p} 0.0315115707  1.0000000 0.0315115707 2.0745659   256
[130] {odor=p,                                                                                    
       spore.print.color=k}      => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[131] {odor=p,                                                                                    
       spore.print.color=n}      => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[132] {odor=p,                                                                                    
       habitat=g}                => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[133] {odor=p,                                                                                    
       cap.surface=s}            => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[134] {odor=p,                                                                                    
       cap.surface=y}            => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[135] {odor=p,                                                                                    
       stalk.color.below.ring=w} => {class=p} 0.0315115707  1.0000000 0.0315115707 2.0745659   256
[136] {odor=l,                                                                                    
       habitat=m}                => {class=e} 0.0157557853  1.0000000 0.0157557853 1.9306084   128
[137] {odor=a,                                                                                    
       habitat=m}                => {class=e} 0.0157557853  1.0000000 0.0157557853 1.9306084   128
[138] {habitat=m,                                                                                 
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[139] {spore.print.color=k,                                                                       
       habitat=m}                => {class=e} 0.0157557853  1.0000000 0.0157557853 1.9306084   128
[140] {spore.print.color=n,                                                                       
       habitat=m}                => {class=e} 0.0157557853  1.0000000 0.0157557853 1.9306084   128
[141] {habitat=m,                                                                                 
       cap.surface=s}            => {class=e} 0.0157557853  0.8767123 0.0179714426 1.6925882   128
[142] {habitat=m,                                                                                 
       cap.surface=y}            => {class=e} 0.0157557853  0.8767123 0.0179714426 1.6925882   128
[143] {odor=n,                                                                                    
       habitat=m}                => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[144] {habitat=m,                                                                                 
       stalk.root=b}             => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[145] {stalk.color.below.ring=w,                                                                  
       habitat=m}                => {class=e} 0.0315115707  0.8767123 0.0359428853 1.6925882   256
[146] {habitat=u,                                                                                 
       stalk.root=e}             => {class=p} 0.0157557853  0.5714286 0.0275726243 1.1854662   128
[147] {spore.print.color=h,                                                                       
       habitat=u}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[148] {spore.print.color=k,                                                                       
       habitat=u}                => {class=p} 0.0078778927  0.5714286 0.0137863122 1.1854662    64
[149] {spore.print.color=n,                                                                       
       habitat=u}                => {class=p} 0.0078778927  0.5714286 0.0137863122 1.1854662    64
[150] {odor=f,                                                                                    
       habitat=u}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[151] {habitat=u,                                                                                 
       cap.surface=f}            => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[152] {habitat=u,                                                                                 
       cap.surface=s}            => {class=p} 0.0256031512  1.0000000 0.0256031512 2.0745659   208
[153] {habitat=u,                                                                                 
       cap.surface=y}            => {class=p} 0.0078778927  1.0000000 0.0078778927 2.0745659    64
[154] {odor=n,                                                                                    
       habitat=u}                => {class=e} 0.0118168390  1.0000000 0.0118168390 1.9306084    96
[155] {habitat=u,                                                                                 
       stalk.root=b}             => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[156] {stalk.color.below.ring=w,                                                                  
       habitat=u}                => {class=p} 0.0334810438  0.7391304 0.0452978828 1.5333748   272
[157] {odor=l,                                                                                    
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[158] {odor=l,                                                                                    
       habitat=p}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[159] {odor=l,                                                                                    
       spore.print.color=k}      => {class=e} 0.0216642048  1.0000000 0.0216642048 1.9306084   176
[160] {odor=l,                                                                                    
       spore.print.color=n}      => {class=e} 0.0246184146  1.0000000 0.0246184146 1.9306084   200
[161] {odor=l,                                                                                    
       habitat=g}                => {class=e} 0.0216642048  1.0000000 0.0216642048 1.9306084   176
[162] {odor=l,                                                                                    
       cap.surface=f}            => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[163] {odor=l,                                                                                    
       cap.surface=s}            => {class=e} 0.0187099951  1.0000000 0.0187099951 1.9306084   152
[164] {odor=l,                                                                                    
       habitat=d}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[165] {odor=l,                                                                                    
       cap.surface=y}            => {class=e} 0.0275726243  1.0000000 0.0275726243 1.9306084   224
[166] {odor=l,                                                                                    
       stalk.root=b}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[167] {odor=l,                                                                                    
       stalk.color.below.ring=w} => {class=e} 0.0492368291  1.0000000 0.0492368291 1.9306084   400
[168] {odor=a,                                                                                    
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[169] {odor=a,                                                                                    
       habitat=p}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[170] {odor=a,                                                                                    
       spore.print.color=k}      => {class=e} 0.0216642048  1.0000000 0.0216642048 1.9306084   176
[171] {odor=a,                                                                                    
       spore.print.color=n}      => {class=e} 0.0246184146  1.0000000 0.0246184146 1.9306084   200
[172] {odor=a,                                                                                    
       habitat=g}                => {class=e} 0.0216642048  1.0000000 0.0216642048 1.9306084   176
[173] {odor=a,                                                                                    
       cap.surface=f}            => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[174] {odor=a,                                                                                    
       cap.surface=s}            => {class=e} 0.0187099951  1.0000000 0.0187099951 1.9306084   152
[175] {odor=a,                                                                                    
       habitat=d}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[176] {odor=a,                                                                                    
       cap.surface=y}            => {class=e} 0.0275726243  1.0000000 0.0275726243 1.9306084   224
[177] {odor=a,                                                                                    
       stalk.root=b}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[178] {odor=a,                                                                                    
       stalk.color.below.ring=w} => {class=e} 0.0492368291  1.0000000 0.0492368291 1.9306084   400
[179] {stalk.color.below.ring=b,                                                                  
       habitat=p}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[180] {spore.print.color=h,                                                                       
       stalk.color.below.ring=b} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[181] {stalk.color.below.ring=b,                                                                  
       habitat=g}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[182] {odor=f,                                                                                    
       stalk.color.below.ring=b} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[183] {stalk.color.below.ring=b,                                                                  
       cap.surface=f}            => {class=p} 0.0265878877  1.0000000 0.0265878877 2.0745659   216
[184] {stalk.color.below.ring=b,                                                                  
       habitat=d}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[185] {stalk.color.below.ring=b,                                                                  
       cap.surface=y}            => {class=p} 0.0265878877  1.0000000 0.0265878877 2.0745659   216
[186] {stalk.color.below.ring=b,                                                                  
       stalk.root=b}             => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[187] {stalk.color.below.ring=n,                                                                  
       habitat=l}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[188] {stalk.color.below.ring=n,                                                                  
       habitat=p}                => {class=p} 0.0177252585  0.9473684 0.0187099951 1.9653782   144
[189] {spore.print.color=h,                                                                       
       stalk.color.below.ring=n} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[190] {stalk.color.below.ring=n,                                                                  
       habitat=g}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[191] {odor=f,                                                                                    
       stalk.color.below.ring=n} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[192] {stalk.color.below.ring=n,                                                                  
       cap.surface=f}            => {class=p} 0.0275726243  0.9032258 0.0305268341 1.8738014   224
[193] {spore.print.color=w,                                                                       
       stalk.color.below.ring=n} => {class=e} 0.0078778927  0.8000000 0.0098473658 1.5444867    64
[194] {stalk.color.below.ring=n,                                                                  
       stalk.root=?}             => {class=p} 0.0019694732  1.0000000 0.0019694732 2.0745659    16
[195] {stalk.color.below.ring=n,                                                                  
       cap.surface=s}            => {class=e} 0.0009847366  1.0000000 0.0009847366 1.9306084     8
[196] {stalk.color.below.ring=n,                                                                  
       habitat=d}                => {class=p} 0.0196947317  0.9523810 0.0206794682 1.9757770   160
[197] {stalk.color.below.ring=n,                                                                  
       cap.surface=y}            => {class=p} 0.0275726243  0.8750000 0.0315115707 1.8152451   224
[198] {odor=n,                                                                                    
       stalk.color.below.ring=n} => {class=e} 0.0078778927  0.8000000 0.0098473658 1.5444867    64
[199] {stalk.color.below.ring=n,                                                                  
       stalk.root=b}             => {class=p} 0.0531757755  0.8709677 0.0610536681 1.8068800   432
[200] {habitat=l,                                                                                 
       stalk.root=c}             => {class=p} 0.0009847366  1.0000000 0.0009847366 2.0745659     8
[201] {spore.print.color=k,                                                                       
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[202] {spore.print.color=n,                                                                       
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[203] {habitat=g,                                                                                 
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[204] {spore.print.color=w,                                                                       
       stalk.root=c}             => {class=p} 0.0054160512  1.0000000 0.0054160512 2.0745659    44
[205] {cap.surface=s,                                                                             
       stalk.root=c}             => {class=e} 0.0315115707  1.0000000 0.0315115707 1.9306084   256
[206] {habitat=d,                                                                                 
       stalk.root=c}             => {class=p} 0.0044313146  1.0000000 0.0044313146 2.0745659    36
[207] {cap.surface=y,                                                                             
       stalk.root=c}             => {class=e} 0.0315115707  0.8533333 0.0369276219 1.6474525   256
[208] {odor=n,                                                                                    
       stalk.root=c}             => {class=p} 0.0009847366  1.0000000 0.0009847366 2.0745659     8
[209] {stalk.color.below.ring=w,                                                                  
       stalk.root=c}             => {class=e} 0.0630231413  1.0000000 0.0630231413 1.9306084   512
[210] {odor=s,                                                                                    
       habitat=l}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[211] {odor=s,                                                                                    
       habitat=p}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[212] {odor=s,                                                                                    
       stalk.color.below.ring=p} => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[213] {odor=s,                                                                                    
       spore.print.color=w}      => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[214] {odor=s,                                                                                    
       stalk.root=?}             => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[215] {odor=s,                                                                                    
       cap.surface=s}            => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[216] {odor=s,                                                                                    
       habitat=d}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[217] {odor=s,                                                                                    
       cap.surface=y}            => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[218] {odor=s,                                                                                    
       stalk.color.below.ring=w} => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[219] {odor=y,                                                                                    
       habitat=l}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[220] {odor=y,                                                                                    
       habitat=p}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[221] {odor=y,                                                                                    
       stalk.color.below.ring=p} => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[222] {odor=y,                                                                                    
       spore.print.color=w}      => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[223] {odor=y,                                                                                    
       stalk.root=?}             => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[224] {odor=y,                                                                                    
       cap.surface=s}            => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[225] {odor=y,                                                                                    
       habitat=d}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[226] {odor=y,                                                                                    
       cap.surface=y}            => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[227] {odor=y,                                                                                    
       stalk.color.below.ring=w} => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[228] {spore.print.color=k,                                                                       
       stalk.color.below.ring=g} => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[229] {spore.print.color=n,                                                                       
       stalk.color.below.ring=g} => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[230] {stalk.color.below.ring=g,                                                                  
       cap.surface=f}            => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[231] {stalk.color.below.ring=g,                                                                  
       habitat=d}                => {class=e} 0.0709010340  1.0000000 0.0709010340 1.9306084   576
[232] {stalk.color.below.ring=g,                                                                  
       cap.surface=y}            => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[233] {odor=n,                                                                                    
       stalk.color.below.ring=g} => {class=e} 0.0709010340  1.0000000 0.0709010340 1.9306084   576
[234] {stalk.color.below.ring=g,                                                                  
       stalk.root=b}             => {class=e} 0.0709010340  1.0000000 0.0709010340 1.9306084   576
[235] {stalk.color.below.ring=p,                                                                  
       habitat=l}                => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[236] {spore.print.color=n,                                                                       
       habitat=l}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[237] {odor=f,                                                                                    
       habitat=l}                => {class=p} 0.0236336780  1.0000000 0.0236336780 2.0745659   192
[238] {habitat=l,                                                                                 
       cap.surface=f}            => {class=e} 0.0029542097  1.0000000 0.0029542097 1.9306084    24
[239] {spore.print.color=w,                                                                       
       habitat=l}                => {class=p} 0.0728705071  0.9250000 0.0787789266 1.9189734   592
[240] {habitat=l,                                                                                 
       stalk.root=?}             => {class=p} 0.0709010340  0.7500000 0.0945347120 1.5559244   576
[241] {habitat=l,                                                                                 
       cap.surface=s}            => {class=p} 0.0354505170  0.6000000 0.0590841950 1.2447395   288
[242] {habitat=l,                                                                                 
       cap.surface=y}            => {class=p} 0.0369276219  0.9259259 0.0398818316 1.9208943   300
[243] {odor=n,                                                                                    
       habitat=l}                => {class=e} 0.0295420975  0.9375000 0.0315115707 1.8099453   240
[244] {habitat=l,                                                                                 
       stalk.root=b}             => {class=e} 0.0059084195  0.8571429 0.0068931561 1.6548072    48
[245] {stalk.color.below.ring=w,                                                                  
       habitat=l}                => {class=p} 0.0364352536  1.0000000 0.0364352536 2.0745659   296
[246] {spore.print.color=k,                                                                       
       stalk.root=e}             => {class=e} 0.0531757755  0.7714286 0.0689315608 1.4893265   432
[247] {spore.print.color=n,                                                                       
       stalk.root=e}             => {class=e} 0.0531757755  0.7714286 0.0689315608 1.4893265   432
[248] {habitat=g,                                                                                 
       stalk.root=e}             => {class=e} 0.0945347120  0.8571429 0.1102904973 1.6548072   768
[249] {cap.surface=f,                                                                             
       stalk.root=e}             => {class=e} 0.0590841950  1.0000000 0.0590841950 1.9306084   480
[250] {cap.surface=s,                                                                             
       stalk.root=e}             => {class=e} 0.0472673560  0.7500000 0.0630231413 1.4479563   384
[251] {cap.surface=y,                                                                             
       stalk.root=e}             => {class=p} 0.0157557853  1.0000000 0.0157557853 2.0745659   128
[252] {odor=n,                                                                                    
       stalk.root=e}             => {class=e} 0.1063515510  1.0000000 0.1063515510 1.9306084   864
[253] {stalk.color.below.ring=w,                                                                  
       stalk.root=e}             => {class=e} 0.1063515510  0.7714286 0.1378631216 1.4893265   864
[254] {spore.print.color=h,                                                                       
       habitat=p}                => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[255] {stalk.color.below.ring=p,                                                                  
       habitat=p}                => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[256] {spore.print.color=k,                                                                       
       habitat=p}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[257] {spore.print.color=n,                                                                       
       habitat=p}                => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[258] {odor=f,                                                                                    
       habitat=p}                => {class=p} 0.0768094535  1.0000000 0.0768094535 2.0745659   624
[259] {habitat=p,                                                                                 
       cap.surface=f}            => {class=p} 0.0265878877  1.0000000 0.0265878877 2.0745659   216
[260] {spore.print.color=w,                                                                       
       habitat=p}                => {class=p} 0.0709010340  0.9350649 0.0758247169 1.9398538   576
[261] {habitat=p,                                                                                 
       stalk.root=?}             => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[262] {habitat=p,                                                                                 
       cap.surface=s}            => {class=p} 0.0354505170  0.9350649 0.0379123584 1.9398538   288
[263] {habitat=p,                                                                                 
       cap.surface=y}            => {class=p} 0.0620384047  0.8129032 0.0763170852 1.6864213   504
[264] {odor=n,                                                                                    
       habitat=p}                => {class=e} 0.0049236829  1.0000000 0.0049236829 1.9306084    40
[265] {habitat=p,                                                                                 
       stalk.root=b}             => {class=p} 0.0531757755  0.9152542 0.0580994584 1.8987552   432
[266] {stalk.color.below.ring=w,                                                                  
       habitat=p}                => {class=p} 0.0354505170  0.6923077 0.0512063023 1.4362379   288
[267] {spore.print.color=h,                                                                       
       stalk.color.below.ring=p} => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[268] {spore.print.color=h,                                                                       
       habitat=g}                => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[269] {odor=f,                                                                                    
       spore.print.color=h}      => {class=p} 0.1949778434  1.0000000 0.1949778434 2.0745659  1584
[270] {spore.print.color=h,                                                                       
       cap.surface=f}            => {class=p} 0.0797636632  1.0000000 0.0797636632 2.0745659   648
[271] {spore.print.color=h,                                                                       
       stalk.root=?}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[272] {spore.print.color=h,                                                                       
       cap.surface=s}            => {class=p} 0.0354505170  1.0000000 0.0354505170 2.0745659   288
[273] {spore.print.color=h,                                                                       
       habitat=d}                => {class=p} 0.0531757755  0.9000000 0.0590841950 1.8671093   432
[274] {spore.print.color=h,                                                                       
       cap.surface=y}            => {class=p} 0.0797636632  0.9310345 0.0856720827 1.9314924   648
[275] {odor=n,                                                                                    
       spore.print.color=h}      => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[276] {spore.print.color=h,                                                                       
       stalk.root=b}             => {class=p} 0.1949778434  1.0000000 0.1949778434 2.0745659  1584
[277] {spore.print.color=h,                                                                       
       stalk.color.below.ring=w} => {class=p} 0.0354505170  0.8571429 0.0413589365 1.7781993   288
[278] {spore.print.color=k,                                                                       
       stalk.color.below.ring=p} => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[279] {spore.print.color=n,                                                                       
       stalk.color.below.ring=p} => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[280] {stalk.color.below.ring=p,                                                                  
       habitat=g}                => {class=p} 0.0177252585  1.0000000 0.0177252585 2.0745659   144
[281] {odor=f,                                                                                    
       stalk.color.below.ring=p} => {class=p} 0.0886262925  1.0000000 0.0886262925 2.0745659   720
[282] {stalk.color.below.ring=p,                                                                  
       cap.surface=f}            => {class=e} 0.0354505170  0.5714286 0.0620384047 1.1032048   288
[283] {spore.print.color=w,                                                                       
       stalk.color.below.ring=p} => {class=p} 0.1063515510  1.0000000 0.1063515510 2.0745659   864
[284] {stalk.color.below.ring=p,                                                                  
       stalk.root=?}             => {class=p} 0.1063515510  1.0000000 0.1063515510 2.0745659   864
[285] {stalk.color.below.ring=p,                                                                  
       cap.surface=s}            => {class=p} 0.0531757755  1.0000000 0.0531757755 2.0745659   432
[286] {stalk.color.below.ring=p,                                                                  
       habitat=d}                => {class=e} 0.0709010340  0.5714286 0.1240768095 1.1032048   576
[287] {stalk.color.below.ring=p,                                                                  
       cap.surface=y}            => {class=p} 0.0797636632  0.6923077 0.1152141802 1.4362379   648
[288] {odor=n,                                                                                    
       stalk.color.below.ring=p} => {class=e} 0.0709010340  1.0000000 0.0709010340 1.9306084   576
[289] {stalk.color.below.ring=p,                                                                  
       stalk.root=b}             => {class=e} 0.0709010340  0.5714286 0.1240768095 1.1032048   576
[290] {spore.print.color=k,                                                                       
       habitat=g}                => {class=e} 0.0689315608  0.8974359 0.0768094535 1.7325973   560
[291] {spore.print.color=k,                                                                       
       cap.surface=f}            => {class=e} 0.0827178730  0.9333333 0.0886262925 1.8019011   672
[292] {spore.print.color=k,                                                                       
       cap.surface=s}            => {class=e} 0.0393894633  0.7407407 0.0531757755 1.4300803   320
[293] {spore.print.color=k,                                                                       
       habitat=d}                => {class=e} 0.1063515510  0.9000000 0.1181683900 1.7375475   864
[294] {spore.print.color=k,                                                                       
       cap.surface=y}            => {class=e} 0.0807483998  0.9111111 0.0886262925 1.7589987   656
[295] {odor=n,                                                                                    
       spore.print.color=k}      => {class=e} 0.1595273264  1.0000000 0.1595273264 1.9306084  1296
[296] {spore.print.color=k,                                                                       
       stalk.root=b}             => {class=e} 0.1063515510  0.9000000 0.1181683900 1.7375475   864
[297] {spore.print.color=k,                                                                       
       stalk.color.below.ring=w} => {class=e} 0.1319547021  0.8271605 0.1595273264 1.5969230  1072
[298] {spore.print.color=n,                                                                       
       habitat=g}                => {class=e} 0.0689315608  0.8974359 0.0768094535 1.7325973   560
[299] {spore.print.color=n,                                                                       
       cap.surface=f}            => {class=e} 0.0856720827  0.9354839 0.0915805022 1.8060530   696
[300] {spore.print.color=n,                                                                       
       stalk.root=?}             => {class=e} 0.0059084195  1.0000000 0.0059084195 1.9306084    48
[301] {spore.print.color=n,                                                                       
       cap.surface=s}            => {class=e} 0.0482520926  0.7777778 0.0620384047 1.5015843   392
[302] {spore.print.color=n,                                                                       
       habitat=d}                => {class=e} 0.1122599705  0.9047619 0.1240768095 1.7467409   912
[303] {spore.print.color=n,                                                                       
       cap.surface=y}            => {class=e} 0.0807483998  0.9111111 0.0886262925 1.7589987   656
[304] {odor=n,                                                                                    
       spore.print.color=n}      => {class=e} 0.1654357459  1.0000000 0.1654357459 1.9306084  1344
[305] {spore.print.color=n,                                                                       
       stalk.root=b}             => {class=e} 0.1122599705  0.9047619 0.1240768095 1.7467409   912
[306] {spore.print.color=n,                                                                       
       stalk.color.below.ring=w} => {class=e} 0.1378631216  0.8333333 0.1654357459 1.6088403  1120
[307] {odor=f,                                                                                    
       habitat=g}                => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[308] {habitat=g,                                                                                 
       cap.surface=f}            => {class=e} 0.0649926145  0.7096774 0.0915805022 1.3701092   528
[309] {spore.print.color=w,                                                                       
       habitat=g}                => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[310] {habitat=g,                                                                                 
       stalk.root=?}             => {class=e} 0.0354505170  1.0000000 0.0354505170 1.9306084   288
[311] {habitat=g,                                                                                 
       cap.surface=s}            => {class=e} 0.0807483998  0.7437642 0.1085672083 1.4359173   656
[312] {habitat=g,                                                                                 
       cap.surface=y}            => {class=p} 0.0366814377  0.5708812 0.0642540620 1.1843307   298
[313] {odor=n,                                                                                    
       habitat=g}                => {class=e} 0.1299852290  0.9670330 0.1344165436 1.8669619  1056
[314] {habitat=g,                                                                                 
       stalk.root=b}             => {class=p} 0.0753323486  1.0000000 0.0753323486 2.0745659   612
[315] {stalk.color.below.ring=w,                                                                  
       habitat=g}                => {class=e} 0.1733136386  0.8205128 0.2112259970 1.5840889  1408
[316] {odor=f,                                                                                    
       cap.surface=f}            => {class=p} 0.0797636632  1.0000000 0.0797636632 2.0745659   648
[317] {odor=f,                                                                                    
       spore.print.color=w}      => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[318] {odor=f,                                                                                    
       stalk.root=?}             => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[319] {odor=f,                                                                                    
       cap.surface=s}            => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[320] {odor=f,                                                                                    
       habitat=d}                => {class=p} 0.0768094535  1.0000000 0.0768094535 2.0745659   624
[321] {odor=f,                                                                                    
       cap.surface=y}            => {class=p} 0.1152141802  1.0000000 0.1152141802 2.0745659   936
[322] {odor=f,                                                                                    
       stalk.root=b}             => {class=p} 0.1949778434  1.0000000 0.1949778434 2.0745659  1584
[323] {odor=f,                                                                                    
       stalk.color.below.ring=w} => {class=p} 0.0709010340  1.0000000 0.0709010340 2.0745659   576
[324] {spore.print.color=w,                                                                       
       cap.surface=f}            => {class=e} 0.0206794682  0.9130435 0.0226489414 1.7627294   168
[325] {cap.surface=f,                                                                             
       stalk.root=?}             => {class=e} 0.0177252585  0.9000000 0.0196947317 1.7375475   144
[326] {habitat=d,                                                                                 
       cap.surface=f}            => {class=e} 0.1122599705  0.7354839 0.1526341704 1.4199313   912
[327] {odor=n,                                                                                    
       cap.surface=f}            => {class=e} 0.1861152142  0.9895288 0.1880846873 1.9103926  1512
[328] {cap.surface=f,                                                                             
       stalk.root=b}             => {class=e} 0.1152141802  0.5571429 0.2067946824 1.0756247   936
[329] {stalk.color.below.ring=w,                                                                  
       cap.surface=f}            => {class=e} 0.1181683900  0.9090909 0.1299852290 1.7550985   960
[330] {spore.print.color=w,                                                                       
       stalk.root=?}             => {class=p} 0.2166420483  0.7857143 0.2757262432 1.6300161  1760
[331] {spore.print.color=w,                                                                       
       cap.surface=s}            => {class=p} 0.1063515510  0.7659574 0.1388478582 1.5890292   864
[332] {spore.print.color=w,                                                                       
       habitat=d}                => {class=p} 0.0792712949  0.9877301 0.0802560315 2.0491111   644
[333] {spore.print.color=w,                                                                       
       cap.surface=y}            => {class=p} 0.1142294436  0.8656716 0.1319547021 1.7958929   928
[334] {odor=n,                                                                                    
       spore.print.color=w}      => {class=e} 0.0709010340  0.9230769 0.0768094535 1.7821000   576
[335] {spore.print.color=w,                                                                       
       stalk.root=b}             => {class=e} 0.0118168390  0.9230769 0.0128015756 1.7821000    96
[336] {spore.print.color=w,                                                                       
       stalk.color.below.ring=w} => {class=p} 0.1073362875  0.6770186 0.1585425899 1.4045198   872
[337] {cap.surface=s,                                                                             
       stalk.root=?}             => {class=p} 0.1063515510  0.6666667 0.1595273264 1.3830439   864
[338] {habitat=d,                                                                                 
       stalk.root=?}             => {class=p} 0.0748399803  0.9268293 0.0807483998 1.9227684   608
[339] {cap.surface=y,                                                                             
       stalk.root=?}             => {class=p} 0.1083210241  0.8593750 0.1260462826 1.7828301   880
[340] {odor=n,                                                                                    
       stalk.root=?}             => {class=e} 0.0886262925  0.9574468 0.0925652388 1.8484548   720
[341] {stalk.color.below.ring=w,                                                                  
       stalk.root=?}             => {class=p} 0.1063515510  0.6666667 0.1595273264 1.3830439   864
[342] {habitat=d,                                                                                 
       cap.surface=s}            => {class=p} 0.0472673560  0.8807339 0.0536681438 1.8271406   384
[343] {odor=n,                                                                                    
       cap.surface=s}            => {class=e} 0.1033973412  0.9589041 0.1078286558 1.8512683   840
[344] {cap.surface=s,                                                                             
       stalk.root=b}             => {class=p} 0.0516986706  0.8536585 0.0605612999 1.7709709   420
[345] {stalk.color.below.ring=w,                                                                  
       cap.surface=s}            => {class=p} 0.1206302314  0.5223881 0.2309207287 1.0837284   980
[346] {habitat=d,                                                                                 
       cap.surface=y}            => {class=e} 0.1127523387  0.6222826 0.1811915313 1.2013840   916
[347] {odor=n,                                                                                    
       habitat=d}                => {class=e} 0.2195962580  0.9823789 0.2235352043 1.8965888  1784
[348] {habitat=d,                                                                                 
       stalk.root=b}             => {class=e} 0.2255046775  0.7459283 0.3023141310 1.4400955  1832
[349] {stalk.color.below.ring=w,                                                                  
       habitat=d}                => {class=e} 0.0886262925  0.6000000 0.1477104874 1.1583650   720
[350] {odor=n,                                                                                    
       cap.surface=y}            => {class=e} 0.1299852290  0.9428571 0.1378631216 1.8202879  1056
[351] {cap.surface=y,                                                                             
       stalk.root=b}             => {class=e} 0.1122599705  0.5700000 0.1969473166 1.1004468   912
[352] {stalk.color.below.ring=w,                                                                  
       cap.surface=y}            => {class=e} 0.1043820778  0.5856354 0.1782373215 1.1306325   848
[353] {odor=n,                                                                                    
       stalk.root=b}             => {class=e} 0.2245199409  0.9579832 0.2343673067 1.8494904  1824
[354] {odor=n,                                                                                    
       stalk.color.below.ring=w} => {class=e} 0.2343673067  0.9596774 0.2442146726 1.8527613  1904
[355] {stalk.color.below.ring=w,                                                                  
       stalk.root=b}             => {class=e} 0.0866568193  0.5569620 0.1555883801 1.0752755   704
In [426]:
#Voy a analizar algunas reglas

#Regla 1:
#odor = a,l,n => edible

#Regla 2:
#odor = c,f,m,p,s,y => poisonous

#Regla 3:
#odor = a,l,n & spore.print.color = r => poisonous

#Regla 4:
#odor = a,l,n & spore.print.color=b,h,k,n,o,u,w,y => edible
In [427]:
#Regla 1:
#odor = a,l,n => edible
inspect(head(subset(rules.objetivo,subset = lhs %in% c("odor=a","odor=l","odor=n")),3))
regla1=subset(rules.objetivo,subset = lhs %in% c("odor=a","odor=l","odor=n"))
    lhs         rhs       support    confidence coverage   lift     count
[1] {odor=l} => {class=e} 0.04923683 1.0000000  0.04923683 1.930608  400 
[2] {odor=a} => {class=e} 0.04923683 1.0000000  0.04923683 1.930608  400 
[3] {odor=n} => {class=e} 0.41949778 0.9659864  0.43426883 1.864941 3408 
In [428]:
#Regla 2:
#odor = c,f,m,p,s,y => poisonous
inspect(head(subset(rules.objetivo,
        subset = lhs %in% c("odor=c","odor=f","odor=m","odor=p","odor=s","odor=y")),6))
regla2=subset(rules.objetivo,
        subset = lhs %in% c("odor=c","odor=f","odor=m","odor=p","odor=s","odor=y"))
    lhs         rhs       support     confidence coverage    lift     count
[1] {odor=m} => {class=p} 0.004431315 1          0.004431315 2.074566   36 
[2] {odor=c} => {class=p} 0.023633678 1          0.023633678 2.074566  192 
[3] {odor=p} => {class=p} 0.031511571 1          0.031511571 2.074566  256 
[4] {odor=s} => {class=p} 0.070901034 1          0.070901034 2.074566  576 
[5] {odor=y} => {class=p} 0.070901034 1          0.070901034 2.074566  576 
[6] {odor=f} => {class=p} 0.265878877 1          0.265878877 2.074566 2160 
In [429]:
#Regla 3:
#odor = a,l,n & spore.print.color = r => poisonous
#Regla1       & spore.print.color = r => poisonous
inspect(head(subset(regla1,subset = lhs %ain% c("spore.print.color=r")),3))
    lhs                             rhs       support     confidence
[1] {odor=n,spore.print.color=r} => {class=p} 0.008862629 1         
    coverage    lift     count
[1] 0.008862629 2.074566 72   
In [430]:
#Regla 4:
#odor = a,l,n & spore.print.color=b,h,k,n,o,u,w,y => edible
#Regla2       & spore.print.color=b,h,k,n,o,u,w,y => edible
inspect(head(subset(regla2,
        subset = lhs %in% c("spore.print.color=b","spore.print.color=h","spore.print.color=k",
                    "spore.print.color=n","spore.print.color=o","spore.print.color=u",
                            "spore.print.color=w","spore.print.color=y")),10))
    lhs                             rhs       support     confidence
[1] {odor=m,spore.print.color=w} => {class=p} 0.004431315 1         
[2] {odor=c,spore.print.color=k} => {class=p} 0.011816839 1         
[3] {odor=c,spore.print.color=n} => {class=p} 0.011816839 1         
[4] {odor=p,spore.print.color=k} => {class=p} 0.015755785 1         
[5] {odor=p,spore.print.color=n} => {class=p} 0.015755785 1         
[6] {odor=s,spore.print.color=w} => {class=p} 0.070901034 1         
[7] {odor=y,spore.print.color=w} => {class=p} 0.070901034 1         
[8] {odor=f,spore.print.color=h} => {class=p} 0.194977843 1         
[9] {odor=f,spore.print.color=w} => {class=p} 0.070901034 1         
    coverage    lift     count
[1] 0.004431315 2.074566   36 
[2] 0.011816839 2.074566   96 
[3] 0.011816839 2.074566   96 
[4] 0.015755785 2.074566  128 
[5] 0.015755785 2.074566  128 
[6] 0.070901034 2.074566  576 
[7] 0.070901034 2.074566  576 
[8] 0.194977843 2.074566 1584 
[9] 0.070901034 2.074566  576 

3.1 Considerar y comparar ambas aproximaciones (p.e. ¿coinciden los antecedentes de las reglas?

In [ ]:
#Es facíl ver que las reglas de asociacion donde los antecedentes son condiciones empleadas en los arboles
#entrenados tienen una confianza muy alta. Tambien hay que notar que he puesto un soporte muy bajo 
#para no quitar casos poco frequentes. 

#Una caracteristica de los arboles es que no discriminan tanto los casos poco comunes como si lo hacen 
#las reglas de asociacion al poner soportes altos.

3.2¿alguna de las variables más frecuentes como antecedente en las reglas se corresponde con alguna de las variables con mayor capacidad de discriminación?

In [433]:
inspect(head(sort(rules.objetivo, by ="count"),20))
     lhs                                   rhs       support   confidence
[1]  {}                                 => {class=e} 0.5179714 0.5179714 
[2]  {odor=n}                           => {class=e} 0.4194978 0.9659864 
[3]  {stalk.color.below.ring=w}         => {class=e} 0.3328410 0.6167883 
[4]  {odor=f}                           => {class=p} 0.2658789 1.0000000 
[5]  {stalk.root=b}                     => {class=e} 0.2363368 0.5084746 
[6]  {odor=n,stalk.color.below.ring=w}  => {class=e} 0.2343673 0.9596774 
[7]  {habitat=d}                        => {class=e} 0.2314131 0.5972046 
[8]  {habitat=d,stalk.root=b}           => {class=e} 0.2255047 0.7459283 
[9]  {odor=n,stalk.root=b}              => {class=e} 0.2245199 0.9579832 
[10] {spore.print.color=w}              => {class=p} 0.2230428 0.7587940 
[11] {odor=n,habitat=d}                 => {class=e} 0.2195963 0.9823789 
[12] {stalk.root=?}                     => {class=p} 0.2166420 0.7096774 
[13] {spore.print.color=w,stalk.root=?} => {class=p} 0.2166420 0.7857143 
[14] {spore.print.color=n}              => {class=e} 0.2146726 0.8861789 
[15] {cap.surface=y}                    => {class=p} 0.2141802 0.5363748 
[16] {spore.print.color=k}              => {class=e} 0.2028557 0.8803419 
[17] {spore.print.color=h}              => {class=p} 0.1949778 0.9705882 
[18] {odor=f,spore.print.color=h}       => {class=p} 0.1949778 1.0000000 
[19] {spore.print.color=h,stalk.root=b} => {class=p} 0.1949778 1.0000000 
[20] {odor=f,stalk.root=b}              => {class=p} 0.1949778 1.0000000 
     coverage  lift      count
[1]  1.0000000 1.0000000 4208 
[2]  0.4342688 1.8649414 3408 
[3]  0.5396356 1.1907767 2704 
[4]  0.2658789 2.0745659 2160 
[5]  0.4647957 0.9816653 1920 
[6]  0.2442147 1.8527613 1904 
[7]  0.3874938 1.1529681 1880 
[8]  0.3023141 1.4400955 1832 
[9]  0.2343673 1.8494904 1824 
[10] 0.2939439 1.5741681 1812 
[11] 0.2235352 1.8965888 1784 
[12] 0.3052683 1.4722726 1760 
[13] 0.2757262 1.6300161 1760 
[14] 0.2422452 1.7108643 1744 
[15] 0.3993107 1.1127450 1740 
[16] 0.2304284 1.6995954 1648 
[17] 0.2008863 2.0135492 1584 
[18] 0.1949778 2.0745659 1584 
[19] 0.1949778 2.0745659 1584 
[20] 0.1949778 2.0745659 1584 
In [ ]:
#La primera condicion de mi arbol optimizado <odor> si que aparece bastante y la segunda condicion 
#<spore.print.color > tambien. Aparecen otras variables de forma frecuente que no fueron consideradas en mi
#arbol optimo pero si que aparecen en el arbol completo como <stalk.color.below.ring>, <habitat>, <cap.surface>
#y <stalk.root>

#Otro punto que anadir es que la tecnica de clasificacion de arbol es mas sensible al training sample que la
#tecnica de reglas de asociacion.